summaryrefslogtreecommitdiff
path: root/test/command_callback/test_standard_command_callback.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2021-03-20 22:11:22 +0000
committerw0rp <devw0rp@gmail.com>2021-03-20 22:11:42 +0000
commitb1d833417bcb57e265e0d01df07b28f463529d4b (patch)
tree11421aeca89127b0cc9417f8ff4cb0d725199f49 /test/command_callback/test_standard_command_callback.vader
parent3838ae118d8f05fa1b1be7952a1c8aa3055d6728 (diff)
downloadale-b1d833417bcb57e265e0d01df07b28f463529d4b.zip
#3633 - Put all dummy test files in test/test-files
Diffstat (limited to 'test/command_callback/test_standard_command_callback.vader')
-rw-r--r--test/command_callback/test_standard_command_callback.vader8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/command_callback/test_standard_command_callback.vader b/test/command_callback/test_standard_command_callback.vader
index a47e2ec9..4722cd4a 100644
--- a/test/command_callback/test_standard_command_callback.vader
+++ b/test/command_callback/test_standard_command_callback.vader
@@ -7,11 +7,11 @@ After:
call ale#assert#TearDownLinterTest()
Execute(bin/cmd.js paths should be preferred):
- call ale#test#SetFilename('standard-test-files/with-cmd/testfile.js')
+ call ale#test#SetFilename('../test-files/standard/with-cmd/testfile.js')
let b:executable = ale#path#Simplify(
\ g:dir
- \ . '/standard-test-files/with-cmd/node_modules/standard/bin/cmd.js'
+ \ . '/../test-files/standard/with-cmd/node_modules/standard/bin/cmd.js'
\)
AssertLinter b:executable,
@@ -20,11 +20,11 @@ Execute(bin/cmd.js paths should be preferred):
\ . ' --stdin %s'
Execute(.bin directories should be used too):
- call ale#test#SetFilename('standard-test-files/with-bin/testfile.js')
+ call ale#test#SetFilename('../test-files/standard/with-bin/testfile.js')
let b:executable = ale#path#Simplify(
\ g:dir
- \ . '/standard-test-files/with-bin/node_modules/.bin/standard'
+ \ . '/../test-files/standard/with-bin/node_modules/.bin/standard'
\)
AssertLinter b:executable, ale#Escape(b:executable) . ' --stdin %s'