tests: remove tests module from integration tests (#6540)

This commit is contained in:
Alice Ryhl
2024-05-05 17:18:37 +02:00
committed by GitHub
parent 75e5b3d96d
commit 7f59a6ea85
+2 -3
View File
@@ -1,5 +1,5 @@
#[cfg(all(tokio_unstable, feature = "tracing"))] #![cfg(all(tokio_unstable, feature = "tracing"))]
mod tests {
use std::rc::Rc; use std::rc::Rc;
use tokio::{ use tokio::{
task::{Builder, LocalSet}, task::{Builder, LocalSet},
@@ -78,4 +78,3 @@ mod tests {
assert_eq!(*result.unwrap(), "task executed"); assert_eq!(*result.unwrap(), "task executed");
} }
}