Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
doy committed Jan 29, 2025
1 parent 30bd81e commit a5491ee
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ fn test_cat_blocking() {

pty.write_all(&[4u8]).unwrap();
drop(pts);
// drop(pty);
let status = child.wait().unwrap();
assert_eq!(status.code().unwrap(), 0);
}
Expand Down Expand Up @@ -70,6 +69,5 @@ async fn test_yes_async() {
assert_eq!(&buf[..bytes], b"y\r\n");

drop(pts);
drop(pty_r);
child.kill().await.unwrap();
}

0 comments on commit a5491ee

Please sign in to comment.