From f96f2fae5b79a218152a704b8be7c982f605a5e0 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sun, 26 Mar 2023 11:53:20 +0200 Subject: [PATCH] tests: fix unused import "rstest::rstest" warning --- tests/common/util.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/common/util.rs b/tests/common/util.rs index 586d95258..5d72a7abf 100644 --- a/tests/common/util.rs +++ b/tests/common/util.rs @@ -10,6 +10,7 @@ use pretty_assertions::assert_eq; #[cfg(any(target_os = "linux", target_os = "android"))] use rlimit::prlimit; +#[cfg(feature = "sleep")] use rstest::rstest; #[cfg(unix)] use std::borrow::Cow;