summaryrefslogtreecommitdiff
path: root/test/fix
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2022-04-01 21:17:15 +0900
committerGitHub <noreply@github.com>2022-04-01 13:17:15 +0100
commit0f55d371e92160812ff0a57b5f48f2010a420f0c (patch)
tree5a291b2decb6fd3014126a468c005c2cbf524972 /test/fix
parente81f005c78193b9475b359751e9fae21f65c1c2b (diff)
downloadale-0f55d371e92160812ff0a57b5f48f2010a420f0c.zip
Add neovim 0.6 to run-tests (#3998)
* Update test scripts * Remove neovim 0.3 and 0.4 * Add neovim 0.6.1 Co-authored-by: Horacio Sanson <horacio@allm.inc> Co-authored-by: w0rp <devw0rp@gmail.com>
Diffstat (limited to 'test/fix')
-rw-r--r--test/fix/test_ale_fix.vader14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/fix/test_ale_fix.vader b/test/fix/test_ale_fix.vader
index 128e3a14..6529f6f9 100644
--- a/test/fix/test_ale_fix.vader
+++ b/test/fix/test_ale_fix.vader
@@ -499,7 +499,7 @@ Execute(ALEFix should fix files on the save event):
\ 'nr': -1,
\ 'pattern': '',
\ 'valid': 1,
- \}], ale#test#GetLoclistWithoutModule()
+ \}], ale#test#GetLoclistWithoutNewerKeys()
endif
Expect(The buffer should be modified):
@@ -547,7 +547,7 @@ Execute(ALEFix should run the linters with b:ale_lint_on_save = 1):
\ 'nr': -1,
\ 'pattern': '',
\ 'valid': 1,
- \}], ale#test#GetLoclistWithoutModule()
+ \}], ale#test#GetLoclistWithoutNewerKeys()
endif
Expect(The buffer should be modified):
@@ -579,7 +579,7 @@ Execute(ALEFix should not fix files on :wq):
Assert &modified, 'The was not marked as ''modified'''
" We should not run the linter.
- AssertEqual [], ale#test#GetLoclistWithoutModule()
+ AssertEqual [], ale#test#GetLoclistWithoutNewerKeys()
Expect(The buffer should not be modified):
a
@@ -619,7 +619,7 @@ Execute(ALEFix should still lint with no linters to be applied):
\ 'nr': -1,
\ 'pattern': '',
\ 'valid': 1,
- \}], ale#test#GetLoclistWithoutModule()
+ \}], ale#test#GetLoclistWithoutNewerKeys()
endif
Expect(The buffer should be the same):
@@ -655,7 +655,7 @@ Execute(ALEFix should still lint when nothing was fixed on save):
\ 'nr': -1,
\ 'pattern': '',
\ 'valid': 1,
- \}], ale#test#GetLoclistWithoutModule()
+ \}], ale#test#GetLoclistWithoutNewerKeys()
endif
Expect(The buffer should be the same):
@@ -679,7 +679,7 @@ Execute(ALEFix should not lint the buffer on save if linting on save is disabled
Assert !filereadable(g:test_filename), 'The file should not have been saved'
- AssertEqual [], ale#test#GetLoclistWithoutModule()
+ AssertEqual [], ale#test#GetLoclistWithoutNewerKeys()
Expect(The buffer should be the same):
a
@@ -702,7 +702,7 @@ Execute(ALEFix should not lint the buffer on save if linting on save is disabled
Assert !filereadable(g:test_filename), 'The file should not have been saved'
- AssertEqual [], ale#test#GetLoclistWithoutModule()
+ AssertEqual [], ale#test#GetLoclistWithoutNewerKeys()
Expect(The buffer should be the same):
a