summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-08-11 00:31:42 +0100
committerw0rp <devw0rp@gmail.com>2017-08-11 00:31:42 +0100
commitd5ae3201a4128c9e7b1042e9ea40b7f13cf72a10 (patch)
tree86ca55a467b86555aaed7e83e0094a5def357bd1 /test
parentb1462ac66c10ed323c5148ecd8821c3a433ff403 (diff)
downloadale-d5ae3201a4128c9e7b1042e9ea40b7f13cf72a10.zip
Ban !=# and !=? from the codebase
Diffstat (limited to 'test')
-rw-r--r--test/test_ale_init_au_groups.vader2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_ale_init_au_groups.vader b/test/test_ale_init_au_groups.vader
index e036343b..c7f56469 100644
--- a/test/test_ale_init_au_groups.vader
+++ b/test/test_ale_init_au_groups.vader
@@ -135,7 +135,7 @@ Execute (g:ale_lint_on_filetype_changed = 1 should bind FileType, and required b
\ 'BufReadPost * let b:ale_original_filetype = &filetype',
\ 'FileType * '
\ . 'if has_key(b:, ''ale_original_filetype'') '
- \ . '&& b:ale_original_filetype !=# expand(''<amatch>'')'
+ \ . '&& b:ale_original_filetype isnot# expand(''<amatch>'')'
\ . '| call ale#Queue(300, ''lint_file'')'
\ . '| endif',
\], CheckAutocmd('ALERunOnFiletypeChangeGroup')