From d8be1cbef11d120ca086874811a0c1926aa655ba Mon Sep 17 00:00:00 2001 From: Nikita Sivukhin Date: Mon, 28 Jul 2025 17:20:57 +0400 Subject: [PATCH] fix after rebase --- tests/integration/functions/test_wal_api.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/integration/functions/test_wal_api.rs b/tests/integration/functions/test_wal_api.rs index 198e9d9a1..9b7b710a3 100644 --- a/tests/integration/functions/test_wal_api.rs +++ b/tests/integration/functions/test_wal_api.rs @@ -75,8 +75,7 @@ fn test_wal_frame_transfer_various_schema_changes() { let last_frame = conn1.wal_frame_count().unwrap() as u32; conn2.wal_insert_begin().unwrap(); for frame_id in (synced_frame + 1)..=last_frame { - let c = conn1.wal_get_frame(frame_id, &mut frame).unwrap(); - db1.io.wait_for_completion(c).unwrap(); + conn1.wal_get_frame(frame_id, &mut frame).unwrap(); conn2.wal_insert_frame(frame_id, &frame).unwrap(); } conn2.wal_insert_end().unwrap();