From 144a31192f485bf1f03b0a5ed75e41e18e28b98e Mon Sep 17 00:00:00 2001 From: Nikita Sivukhin Date: Thu, 21 Aug 2025 14:13:26 +0400 Subject: [PATCH] fix clippy --- tests/integration/functions/test_wal_api.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/functions/test_wal_api.rs b/tests/integration/functions/test_wal_api.rs index b8cd456f8..2552fa45c 100644 --- a/tests/integration/functions/test_wal_api.rs +++ b/tests/integration/functions/test_wal_api.rs @@ -476,7 +476,7 @@ fn test_wal_upper_bound_passive() { .execute("insert into test values (2, 'turso')") .unwrap(); let watermark2 = writer.wal_frame_count().unwrap(); - let expected = vec![ + let expected = [ vec![ turso_core::types::Value::Integer(1), turso_core::types::Value::Text(turso_core::types::Text::new("hello")),