aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-08-17 00:11:15 +0200
committerDario Nieuwenhuis <[email protected]>2023-08-17 01:03:12 +0200
commit065b0f34af4215cff81a799044f73980ed751120 (patch)
tree41487c9f282818b13a3f0733c85d862ea9c60fab /tests
parent2a4ebdc150ba7c32d7dacc12aec85bccf05a41ff (diff)
net-esp-hosted: sane error handling in control requests.
Diffstat (limited to 'tests')
-rw-r--r--tests/nrf/src/bin/wifi_esp_hosted_perf.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/nrf/src/bin/wifi_esp_hosted_perf.rs b/tests/nrf/src/bin/wifi_esp_hosted_perf.rs
index 16055fae8..4b221a81b 100644
--- a/tests/nrf/src/bin/wifi_esp_hosted_perf.rs
+++ b/tests/nrf/src/bin/wifi_esp_hosted_perf.rs
@@ -76,8 +76,8 @@ async fn main(spawner: Spawner) {
76 76
77 unwrap!(spawner.spawn(wifi_task(runner))); 77 unwrap!(spawner.spawn(wifi_task(runner)));
78 78
79 control.init().await; 79 unwrap!(control.init().await);
80 control.join(WIFI_NETWORK, WIFI_PASSWORD).await; 80 unwrap!(control.connect(WIFI_NETWORK, WIFI_PASSWORD).await);
81 81
82 // Generate random seed 82 // Generate random seed
83 let mut rng = Rng::new(p.RNG, Irqs); 83 let mut rng = Rng::new(p.RNG, Irqs);