fix: test_dev_null_write() was not using echo as intended

This commit is contained in:
Michael Bolin
2025-05-13 19:17:10 -07:00
parent 3c03c25e56
commit 1723bffa19

View File

@@ -194,7 +194,7 @@ mod tests {
#[tokio::test]
async fn test_dev_null_write() {
run_cmd(&["echo", "blah", ">", "/dev/null"], &[], 200).await;
run_cmd(&["bash", "-lc", "echo blah > /dev/null"], &[], 200).await;
}
#[tokio::test]