aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-12-11 16:53:36 +0000
committerGitHub <[email protected]>2025-12-11 16:53:36 +0000
commit3588023e3e04b18cf98a2a0d10756e1f236ca351 (patch)
tree9c044943daa253e7e489ee5cc374b1de6de72b2f /tests
parent0301bdf2c09854f9f3bc864f666608cef295373b (diff)
parent31039201e7edcba6bbf6ba8679332cf98d6d7b1f (diff)
Merge pull request #5020 from simonborje/improve_cyw43_join_result
Improve cyw43 join handling
Diffstat (limited to 'tests')
-rw-r--r--tests/rp/src/bin/cyw43-perf.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rp/src/bin/cyw43-perf.rs b/tests/rp/src/bin/cyw43-perf.rs
index 9487f5e1a..1ef9cf066 100644
--- a/tests/rp/src/bin/cyw43-perf.rs
+++ b/tests/rp/src/bin/cyw43-perf.rs
@@ -98,7 +98,7 @@ async fn main(spawner: Spawner) {
98 { 98 {
99 Ok(_) => break, 99 Ok(_) => break,
100 Err(err) => { 100 Err(err) => {
101 panic!("join failed with status={}", err.status); 101 panic!("join failed: {:?}", err);
102 } 102 }
103 } 103 }
104 } 104 }