diff options
author | Jim Meyering <jim@meyering.net> | 2005-11-22 15:08:09 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-11-22 15:08:09 +0000 |
commit | ad1df12ba2cf2d6b2c9b02823d2d2c78ae8fefb3 (patch) | |
tree | a1dc893d1101b7ab23de95695b42ea37fa69fb81 /tests/rm/unread2 | |
parent | 901835b8bfc3a631fe5f27e2f6d58960da1585cd (diff) | |
download | coreutils-ad1df12ba2cf2d6b2c9b02823d2d2c78ae8fefb3.tar.xz |
(rm): Change expected diagnostic, `cannot open directory' to `cannot remove',
to align with new version of rm.
Diffstat (limited to 'tests/rm/unread2')
-rwxr-xr-x | tests/rm/unread2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/unread2 b/tests/rm/unread2 index b68f9ef4c..55c74ff69 100755 --- a/tests/rm/unread2 +++ b/tests/rm/unread2 @@ -31,7 +31,7 @@ fail=0 # This should fail. rm -rf a > out 2>&1 && fail=1 cat <<\EOF > exp -rm: cannot open directory `a': Permission denied +rm: cannot remove `a': Permission denied EOF cmp out exp || fail=1 |