From 84f04ac0819e80c829db25f558b66843424f8c48 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 11 Mar 2022 21:02:24 -0500 Subject: use tokio::test --- tests/basic.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/basic.rs') diff --git a/tests/basic.rs b/tests/basic.rs index fd74463..f6faa2e 100644 --- a/tests/basic.rs +++ b/tests/basic.rs @@ -22,8 +22,7 @@ fn test_cat_blocking() { } #[cfg(feature = "async")] -#[tokio::main] -#[test] +#[tokio::test] async fn test_cat_async() { use futures::stream::StreamExt as _; use tokio::io::AsyncWriteExt as _; @@ -47,8 +46,7 @@ async fn test_cat_async() { } #[cfg(feature = "async")] -#[tokio::main] -#[test] +#[tokio::test] async fn test_yes_async() { use tokio::io::AsyncReadExt as _; -- cgit v1.2.3-54-g00ecf