We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6d6fbc commit 0b0d974Copy full SHA for 0b0d974
tests/sql_test_files/mod.rs
@@ -14,7 +14,8 @@ async fn run_all_sql_test_files() {
14
wait_for_echo_server(port).await;
15
16
for test_file in test_files {
17
- let _ = Box::pin(run_sql_test(&test_file, &app_data, &echo_handle, port));
+ let test = Box::pin(run_sql_test(&test_file, &app_data, &echo_handle, port));
18
+ std::mem::drop(test);
19
}
20
21
let _ = shutdown_tx.send(());
0 commit comments