From 26535e4b8d4943bb1795b8d7ba02c21e47db0069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Marcos?= Date: Sat, 3 May 2025 19:42:09 -0300 Subject: [PATCH] add #[allow(dead_code)] --- tests/integration.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration.rs b/tests/integration.rs index 7fef1f7..bb0d1ff 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -91,6 +91,7 @@ fn create_random_files(dir: impl Into, depth: u8, rng: &mut SmallRng) { } /// Create n random files on directory dir +#[cfg_attr(feature = "allow_piped_choice", allow(unused))] fn create_n_random_files(n: usize, dir: impl Into, rng: &mut SmallRng) { let dir: &PathBuf = &dir.into();