aboutsummaryrefslogtreecommitdiffstats
path: root/tests/split.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/split.rs')
-rw-r--r--tests/split.rs9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/split.rs b/tests/split.rs
index fc9b9d0..4799c13 100644
--- a/tests/split.rs
+++ b/tests/split.rs
@@ -1,8 +1,7 @@
mod helpers;
#[cfg(feature = "async")]
-#[tokio::main]
-#[test]
+#[tokio::test]
async fn test_split() {
use futures::stream::StreamExt as _;
use tokio::io::AsyncWriteExt as _;
@@ -42,8 +41,7 @@ async fn test_split() {
}
#[cfg(feature = "async")]
-#[tokio::main]
-#[test]
+#[tokio::test]
async fn test_into_split() {
use tokio::io::{AsyncBufReadExt as _, AsyncWriteExt as _};
@@ -111,8 +109,7 @@ async fn test_into_split() {
}
#[cfg(feature = "async")]
-#[tokio::main]
-#[test]
+#[tokio::test]
async fn test_into_split_error() {
let pty1 = pty_process::Pty::new().unwrap();
let pty2 = pty_process::Pty::new().unwrap();