diff options
author | toastal <toastal@protonmail.com> | 2020-11-14 15:03:26 +0700 |
---|---|---|
committer | toastal <toastal@protonmail.com> | 2020-11-14 15:03:26 +0700 |
commit | 42e4b148616981234425b31d2858c62f30e4153d (patch) | |
tree | f162b21d6cbbf1e8cc4b7ad0dfb299895ad0f144 /test/test_organize_imports.vader | |
parent | 48cbf1cb36e6e289be6275e6643504326963c3a4 (diff) | |
parent | 1ec573bf0df6cbc5eef8b593f93081e4c1837c1b (diff) | |
download | ale-42e4b148616981234425b31d2858c62f30e4153d.zip |
Merge branch 'master' of github.com:dense-analysis/ale into dhall
Diffstat (limited to 'test/test_organize_imports.vader')
-rw-r--r-- | test/test_organize_imports.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_organize_imports.vader b/test/test_organize_imports.vader index c51ff1c0..35cd99ff 100644 --- a/test/test_organize_imports.vader +++ b/test/test_organize_imports.vader @@ -57,9 +57,9 @@ Before: call add(g:expr_list, a:expr) endfunction - function! ale#code_action#HandleCodeAction(code_action, should_save) abort + function! ale#code_action#HandleCodeAction(code_action, options) abort let g:handle_code_action_called = 1 - AssertEqual v:false, a:should_save + Assert !get(a:options, 'should_save') call add(g:code_actions, a:code_action) endfunction |