From 10a110d2ece89267974a880981b4318cd1a6f4f7 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Thu, 24 Jul 2025 20:26:06 +0000 Subject: [PATCH] fix(tests): swap i32 -> i64 in smart sync test --- tests/integration_smart_sync_no_changes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_smart_sync_no_changes.rs b/tests/integration_smart_sync_no_changes.rs index 9d75038..4dfac93 100644 --- a/tests/integration_smart_sync_no_changes.rs +++ b/tests/integration_smart_sync_no_changes.rs @@ -130,7 +130,7 @@ async fn test_directory_etag_comparison_efficiency() { user_id: user.id, directory_path: format!("/Documents/Folder{:03}", i), directory_etag: format!("etag-folder-{:03}", i), - file_count: i as i32 % 10 + 1, // 1-10 files per directory + file_count: i as i64 % 10 + 1, // 1-10 files per directory total_size_bytes: (i as i64 + 1) * 10000, // Varying sizes }); }