From ff8befbc549ef6a83db5879953e087a988e7e94c Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Wed, 23 Feb 2022 11:46:17 +0100 Subject: [PATCH] ci: fix test not working on wasm (#4527) --- tokio/tests/sync_watch.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tokio/tests/sync_watch.rs b/tokio/tests/sync_watch.rs index 2097b8bdf..d47f0df73 100644 --- a/tokio/tests/sync_watch.rs +++ b/tokio/tests/sync_watch.rs @@ -213,6 +213,7 @@ fn reopened_after_subscribe() { } #[test] +#[cfg(not(target_arch = "wasm32"))] // wasm currently doesn't support unwinding fn send_modify_panic() { let (tx, mut rx) = watch::channel("one");