summaryrefslogtreecommitdiff
path: root/tests/touch/no-dereference
diff options
context:
space:
mode:
Diffstat (limited to 'tests/touch/no-dereference')
-rwxr-xr-xtests/touch/no-dereference4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/touch/no-dereference b/tests/touch/no-dereference
index 6f031424e..aee9a5cfc 100755
--- a/tests/touch/no-dereference
+++ b/tests/touch/no-dereference
@@ -58,11 +58,11 @@ esac
# Change the mtime of a symlink.
touch -m -h -d 2009-10-10 link || fail=1
-case `stat --format=%y link` in
+case $(stat --format=%y link) in
2009-10-10*) ;;
*) fail=1 ;;
esac
-case `stat --format=%y file` in
+case $(stat --format=%y file) in
2009-10-10*) fail=1;;
esac