aboutsummaryrefslogtreecommitdiff
path: root/tests/perf-client/src
diff options
context:
space:
mode:
Diffstat (limited to 'tests/perf-client/src')
-rw-r--r--tests/perf-client/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/perf-client/src/lib.rs b/tests/perf-client/src/lib.rs
index d709c7bd0..54762379a 100644
--- a/tests/perf-client/src/lib.rs
+++ b/tests/perf-client/src/lib.rs
@@ -16,7 +16,7 @@ pub struct Expected {
16pub async fn run<D: Driver>(stack: &Stack<D>, expected: Expected) { 16pub async fn run<D: Driver>(stack: &Stack<D>, expected: Expected) {
17 info!("Waiting for DHCP up..."); 17 info!("Waiting for DHCP up...");
18 while stack.config_v4().is_none() { 18 while stack.config_v4().is_none() {
19 Timer::after(Duration::from_millis(100)).await; 19 Timer::after_millis(100).await;
20 } 20 }
21 info!("IP addressing up!"); 21 info!("IP addressing up!");
22 22