diff options
Diffstat (limited to 'tests/rm/ir-1')
-rwxr-xr-x | tests/rm/ir-1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rm/ir-1 b/tests/rm/ir-1 index ac2959020..01b33bc1e 100755 --- a/tests/rm/ir-1 +++ b/tests/rm/ir-1 @@ -48,7 +48,7 @@ rm --verbose -i -r $t < in > /dev/null 2>&1 || fail=1 test -d $t || fail=1 # There should be only one directory left. -case `echo $t/*` in +case $(echo $t/*) in $t/[abc]) ;; *) fail=1 ;; esac |