summaryrefslogtreecommitdiff
path: root/test/command_callback/test_slimlint_command_callback.vader
diff options
context:
space:
mode:
authorMarkus Doits <markus.doits@stellenticket.de>2017-09-18 12:28:37 +0200
committerMarkus Doits <markus.doits@stellenticket.de>2017-09-18 12:29:20 +0200
commit5a1ebdb633fd72f802923d35c1665096625208d5 (patch)
tree520cc244f5cc77922aaba810db90e37990ccb42c /test/command_callback/test_slimlint_command_callback.vader
parent8bc66cff39f166562aa1060f4f50e478ebe4dd9b (diff)
downloadale-5a1ebdb633fd72f802923d35c1665096625208d5.zip
fix typo `RUBUCOP` --> `RUBOCOP` for slim lint
this actually makes 6ebd8f355c974cb6b7c5d5aff20603c8c4b38feb work
Diffstat (limited to 'test/command_callback/test_slimlint_command_callback.vader')
-rw-r--r--test/command_callback/test_slimlint_command_callback.vader4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command_callback/test_slimlint_command_callback.vader b/test/command_callback/test_slimlint_command_callback.vader
index 1bff4288..98fd9a83 100644
--- a/test/command_callback/test_slimlint_command_callback.vader
+++ b/test/command_callback/test_slimlint_command_callback.vader
@@ -22,7 +22,7 @@ Execute(The command should have the .rubocop.yml prepended as an env var if one
call ale#test#SetFilename('../slimlint-test-files/subdir/file.slim')
AssertEqual
- \ 'SLIM_LINT_RUBUCOP_CONF=''/testplugin/test/slimlint-test-files/.rubocop.yml'' ' . g:default_command,
+ \ 'SLIM_LINT_RUBOCOP_CONF=''/testplugin/test/slimlint-test-files/.rubocop.yml'' ' . g:default_command,
\ ale_linters#slim#slimlint#GetCommand(bufnr(''))
Execute(The command should have the .rubocop.yml prepended as an env var if one exists on win32):
@@ -31,5 +31,5 @@ Execute(The command should have the .rubocop.yml prepended as an env var if one
let g:ale_has_override['win32'] = 1
AssertEqual
- \ 'set SLIM_LINT_RUBUCOP_CONF=''/testplugin/test/slimlint-test-files/.rubocop.yml'' && ' . g:default_command,
+ \ 'set SLIM_LINT_RUBOCOP_CONF=''/testplugin/test/slimlint-test-files/.rubocop.yml'' && ' . g:default_command,
\ ale_linters#slim#slimlint#GetCommand(bufnr(''))