diff options
author | Ian2020 <Ian2020@users.noreply.github.com> | 2020-04-28 18:13:34 +0100 |
---|---|---|
committer | Ian2020 <Ian2020@users.noreply.github.com> | 2020-04-28 18:13:34 +0100 |
commit | 3f3426515107ae62b2e0d158ab192fcec95cfd10 (patch) | |
tree | acf250b4d213092342b6d02193d722d21802199d /test | |
parent | d4e1c57026395c53547e18ab290fc588e0645d22 (diff) | |
download | ale-3f3426515107ae62b2e0d158ab192fcec95cfd10.zip |
Fix handler test, function name has changed
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_shellcheck_handler.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/handler/test_shellcheck_handler.vader b/test/handler/test_shellcheck_handler.vader index bfb73ffa..33f12989 100644 --- a/test/handler/test_shellcheck_handler.vader +++ b/test/handler/test_shellcheck_handler.vader @@ -22,7 +22,7 @@ Execute(The shellcheck handler should handle basic errors or warnings): \ 'code': 'SC1068', \ }, \ ], - \ ale_linters#sh#shellcheck#Handle(bufnr(''), [ + \ ale#handlers#shellcheck#Handle(bufnr(''), [ \ '-:2:1: warning: In POSIX sh, ''let'' is not supported. [SC2039]', \ '-:2:3: error: Don''t put spaces around the = in assignments. [SC1068]', \ ]) @@ -38,6 +38,6 @@ Execute(The shellcheck handler should handle notes): \ 'code': 'SC2086', \ }, \ ], - \ ale_linters#sh#shellcheck#Handle(bufnr(''), [ + \ ale#handlers#shellcheck#Handle(bufnr(''), [ \ '-:3:3: note: Double quote to prevent globbing and word splitting. [SC2086]', \ ]) |