From dd51525c6c2473a533368d6523f96c7d86995d35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20M=2E=20Bezerra?= Date: Sat, 16 Sep 2023 14:39:47 -0300 Subject: [PATCH] decrease RAM usage in integration tests by decreasing the size of extension chains --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index 4b29a19..bd968d9 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -129,7 +129,7 @@ fn single_file( #[proptest(cases = 50)] fn multiple_files( ext: DirectoryExtension, - #[any(size_range(0..7).lift())] exts: Vec, + #[any(size_range(0..5).lift())] exts: Vec, #[strategy(0u8..4)] depth: u8, ) { let dir = tempdir().unwrap();