Skip to content

Commit 30e0ce3

Browse files
committed
build fix
1 parent 0e68690 commit 30e0ce3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

phd-tests/framework/src/guest_os/windows_server_2019.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
88
use std::borrow::Cow;
99

10-
use super::{CommandSequence, GuestOs, GuestOsKind};
10+
use super::{
11+
windows::prepend_reset_to_shell_command, CommandSequence, GuestOs,
12+
GuestOsKind,
13+
};
1114

1215
/// The guest adapter for Windows Server 2019 images. See [the general
1316
/// Windows module](mod@super::windows) documentation for more information about

phd-tests/framework/src/test_vm/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ impl TestVm {
773773
self.wait_for_serial_output(expect, expect_timeout)
774774
.await
775775
.map(|_| ())
776-
.map_err(|e| backoff::Error::transient(e))
776+
.map_err(backoff::Error::transient)
777777
};
778778

779779
backoff::future::retry(

0 commit comments

Comments
 (0)