sum: fix sysv_stdin testcase

This commit is contained in:
Michael Gehring 2015-11-25 09:51:32 +01:00
parent cdbae736f1
commit e7398b3ca7

View file

@ -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);