From 44c1881fb2194ca8afb428334df3a45978631eb3 Mon Sep 17 00:00:00 2001 From: Matthew Jackson Date: Thu, 30 Apr 2026 19:52:53 -0700 Subject: [PATCH] fix: add missing Duration import in scsi_recovery test --- tests/scsi_recovery.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/scsi_recovery.rs b/tests/scsi_recovery.rs index 1eb5e9e..c8f909c 100644 --- a/tests/scsi_recovery.rs +++ b/tests/scsi_recovery.rs @@ -9,6 +9,7 @@ //! These tests require a real /dev/sg* device and are therefore #[ignore]. use std::path::Path; +use std::time::Duration; #[test] #[ignore]