Skip to content

Commit 0b0d974

Browse files
committed
Add mem::drop for clippy in test "run_all_sql_test_files"
1 parent b6d6fbc commit 0b0d974

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/sql_test_files/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ async fn run_all_sql_test_files() {
1414
wait_for_echo_server(port).await;
1515

1616
for test_file in test_files {
17-
let _ = Box::pin(run_sql_test(&test_file, &app_data, &echo_handle, port));
17+
let test = Box::pin(run_sql_test(&test_file, &app_data, &echo_handle, port));
18+
std::mem::drop(test);
1819
}
1920

2021
let _ = shutdown_tx.send(());

0 commit comments

Comments
 (0)