From fdb80746be355f7ea0e89447c795cbcb6a252a7f Mon Sep 17 00:00:00 2001 From: Nikita Sivukhin Date: Thu, 21 Aug 2025 17:57:37 +0400 Subject: [PATCH] fix clippy --- tests/integration/functions/test_wal_api.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/integration/functions/test_wal_api.rs b/tests/integration/functions/test_wal_api.rs index 2534223e8..38537000a 100644 --- a/tests/integration/functions/test_wal_api.rs +++ b/tests/integration/functions/test_wal_api.rs @@ -784,7 +784,7 @@ fn test_wal_api_insert_exec_mix() { } let info = WalFrameInfo { db_size: 0, - page_no: page_no, + page_no, }; info.put_to_frame_header(&mut frame); frames.push(frame); @@ -824,7 +824,7 @@ fn test_wal_api_insert_exec_mix() { vec![ vec![ turso_core::types::Value::Integer(1), - turso_core::types::Value::Integer(1 * 4096), + turso_core::types::Value::Integer(4096), ], vec![ turso_core::types::Value::Integer(3), @@ -922,7 +922,7 @@ fn test_db_share_same_file() { rows, vec![vec![ turso_core::types::Value::Integer(1), - turso_core::types::Value::Integer(1 * 4096), + turso_core::types::Value::Integer(4096), ]] ); }