From 2bcdc973412ab4fa650c7f3efeb36badd24482fa Mon Sep 17 00:00:00 2001 From: MattJackson <1085847+MattJackson@users.noreply.github.com> 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]