From 6d5c5443202d2459ae606c971c0f2799a70b9468 Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Wed, 26 Jun 2024 16:25:32 +0200 Subject: [PATCH] chore: minor refactor --- abci/tests/grpc.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/abci/tests/grpc.rs b/abci/tests/grpc.rs index ac2e966..6754a0f 100644 --- a/abci/tests/grpc.rs +++ b/abci/tests/grpc.rs @@ -113,10 +113,7 @@ async fn grpc_server_test(test_name: &str, bind_address: &str) { } } - tokio::task::spawn_blocking(move || drop(td)) - .await - .expect("tenderdash cleanup"); - + drop(td); tracing::info!("Test finished successfully"); }