diff --git a/datafusion/common-runtime/src/common.rs b/datafusion/common-runtime/src/common.rs index 30f7526bc0b2..698a846b4844 100644 --- a/datafusion/common-runtime/src/common.rs +++ b/datafusion/common-runtime/src/common.rs @@ -108,14 +108,4 @@ mod tests { Err(e) if e.is_cancelled() )); } - - #[tokio::test] - #[should_panic(expected = "foo")] - async fn panic_resume() { - // this should panic w/o an `unwrap` - SpawnedTask::spawn(async { panic!("foo") }) - .join_unwind() - .await - .ok(); - } }