diff options
Diffstat (limited to 'tests/mv/part-hardlink')
-rwxr-xr-x | tests/mv/part-hardlink | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/mv/part-hardlink b/tests/mv/part-hardlink index ac71bdf72..af773a23b 100755 --- a/tests/mv/part-hardlink +++ b/tests/mv/part-hardlink @@ -35,9 +35,9 @@ mv f g "$other_partition_tmpdir" || fail=1 mv a b "$other_partition_tmpdir" || fail=1 cd "$other_partition_tmpdir" -set `ls -Ci f g` +set $(ls -Ci f g) test $1 = $3 || fail=1 -set `ls -Ci a/1 b/1` +set $(ls -Ci a/1 b/1) test $1 = $3 || fail=1 Exit $fail |