From ed7dd61ac38494a2ecc680948347e08c8f97353c Mon Sep 17 00:00:00 2001 From: Hayden Stainsby Date: Tue, 3 Dec 2024 15:03:57 +0100 Subject: [PATCH] remove canary test I was just making sure that if these tests fail, CI will fail. --- tokio/tests/tracing_sync.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tokio/tests/tracing_sync.rs b/tokio/tests/tracing_sync.rs index 067a3a67037..892331e7179 100644 --- a/tokio/tests/tracing_sync.rs +++ b/tokio/tests/tracing_sync.rs @@ -281,9 +281,3 @@ async fn test_semaphore_creates_span() { handle.assert_finished(); } - -#[test] -fn this_test_must_fail() { - let value = false; - assert!(value, "I must fail"); -}