diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-05-19 19:18:48 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-05-19 19:19:47 +0300 |
commit | 3fce45aadf75d5d5e1f9fea19f5a1bf04726ab68 (patch) | |
tree | 7424080a14ff77bd8ea9740d513fa7029beaf6df /tests/test/script/integration | |
parent | 9ab2bd2130f19958fed39e919e26da9ae56fa1f9 (diff) |
Fix testscripts using types for testscript and manifest targets
Diffstat (limited to 'tests/test/script/integration')
-rw-r--r-- | tests/test/script/integration/testscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test/script/integration/testscript b/tests/test/script/integration/testscript index 7074e36..e7abebe 100644 --- a/tests/test/script/integration/testscript +++ b/tests/test/script/integration/testscript @@ -14,7 +14,7 @@ : testscript-and-other : $* <<EOI 2>>/EOE != 0 - ./: test{../testscript ../foo} + ./: ../testscript test{../foo} EOI error: both 'testscript' and other names specified for dir{./} EOE @@ -22,7 +22,7 @@ : other-and-testscript : $* <<EOI 2>>/EOE != 0 - ./: test{../foo ../testscript} + ./: test{../foo} ../testscript EOI error: both 'testscript' and other names specified for dir{./} EOE |