diff options
Diffstat (limited to 'tests/misc/wc-files0')
-rwxr-xr-x | tests/misc/wc-files0 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/misc/wc-files0 b/tests/misc/wc-files0 index 49df3b4b0..0cc4b8417 100755 --- a/tests/misc/wc-files0 +++ b/tests/misc/wc-files0 @@ -31,13 +31,13 @@ cat <<\EOF > exp || fail=1 2 3 10 total EOF -compare out exp || fail=1 +compare exp out || fail=1 if test "$fail" = ''; then # Repeat the above test, but read the file name list from stdin. rm -f out wc --files0-from=- < names > out || fail=1 - compare out exp || fail=1 + compare exp out || fail=1 fi Exit $fail |