mirror of
https://github.com/uutils/coreutils
synced 2024-11-15 17:28:03 +00:00
sum: fix sysv_stdin testcase
This commit is contained in:
parent
cdbae736f1
commit
e7398b3ca7
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ fn test_sysv_multiple_files() {
|
|||
fn test_sysv_stdin() {
|
||||
let (at, mut ucmd) = testing(UTIL_NAME);
|
||||
let input = at.read("lorem_ipsum.txt");
|
||||
let result = ucmd.run_piped_stdin(input);
|
||||
let result = ucmd.arg("-s").run_piped_stdin(input);
|
||||
|
||||
assert_empty_stderr!(result);
|
||||
assert!(result.success);
|
||||
|
|
Loading…
Reference in a new issue