aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/builtin/ln.testscript
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test/script/builtin/ln.testscript')
-rw-r--r--tests/test/script/builtin/ln.testscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test/script/builtin/ln.testscript b/tests/test/script/builtin/ln.testscript
index 2838b22..542b0c7 100644
--- a/tests/test/script/builtin/ln.testscript
+++ b/tests/test/script/builtin/ln.testscript
@@ -57,7 +57,7 @@
$c <<EOI && $b
mkdir b c;
touch a b/c;
- ln -s a b c/
+ ln -s ../a ../b c/
EOI
: no-cleanup
@@ -65,7 +65,7 @@
$c <<EOI && $b
mkdir b c;
touch a b/c;
- ln -s --no-cleanup a b c/;
+ ln -s --no-cleanup ../a ../b c/;
rm -r c/a c/b
EOI
}