diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-03-14 00:53:12 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-03-17 14:41:09 +0300 |
commit | ff5c508e1678e2e8a02544cd71c5560bb59f313c (patch) | |
tree | 7f5eef2d586e6841df52a05738889f8e7e35ba05 /tests/test/script/builtin | |
parent | bab021a6203127f38fb89c61cc41deb3e0abbe62 (diff) |
Adapt testscripts to ln builtin target path completion fix
Diffstat (limited to 'tests/test/script/builtin')
-rw-r--r-- | tests/test/script/builtin/ln.testscript | 4 |
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 } |