From af11ab889e1208504f6fc202e7428246f06177f5 Mon Sep 17 00:00:00 2001 From: DuProcess <273172371+DuProcess@users.noreply.github.com> Date: Fri, 17 Jul 2026 20:03:05 -0400 Subject: [PATCH] Keep large file regression test fast --- tests/integration_smoke.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_smoke.rs b/tests/integration_smoke.rs index 0d53fba..8bef037 100644 --- a/tests/integration_smoke.rs +++ b/tests/integration_smoke.rs @@ -1027,7 +1027,7 @@ fn native_file_copy_recursive_round_trip() { fs::create_dir_all(src.join("nested")).unwrap(); fs::write(src.join("root.txt"), b"root file\n").unwrap(); fs::write(src.join("nested/child.txt"), b"child file\n").unwrap(); - let large_payload: Vec = (0..2 * 1024 * 1024) + let large_payload: Vec = (0..128 * 1024) .map(|index| (index % 251) as u8) .collect(); fs::write(src.join("large.bin"), &large_payload).unwrap();