diff options
author | Nick Krichevsky <njk828@gmail.com> | 2017-06-27 10:07:26 -0400 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2017-06-27 15:07:26 +0100 |
commit | 14cca6d1155720124bcc735b189212096a76391a (patch) | |
tree | ca4bf618383ff0ab225cf2c05e05680c120a1387 /test | |
parent | 16ba9bd680f513affd7b5c64e2f012a85748393a (diff) | |
download | ale-14cca6d1155720124bcc735b189212096a76391a.zip |
Remove style classification from E999 (#696)v1.4.0
* Remove style classification from E999
* Update test_flake8_handler to reflect E999 changes
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_flake8_handler.vader | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/handler/test_flake8_handler.vader b/test/handler/test_flake8_handler.vader index 7de28275..0d6d65fc 100644 --- a/test/handler/test_flake8_handler.vader +++ b/test/handler/test_flake8_handler.vader @@ -4,7 +4,7 @@ Before: After: call ale#linter#Reset() -Execute(The flake8 handler should handle basic warnings): +Execute(The flake8 handler should handle basic warnings and syntax errors): AssertEqual \ [ \ { @@ -21,10 +21,17 @@ Execute(The flake8 handler should handle basic warnings): \ 'text': 'W123: some warning', \ 'sub_type': 'style', \ }, + \ { + \ 'lnum': 8, + \ 'col': 3, + \ 'type': 'E', + \ 'text': 'E999: SyntaxError: invalid syntax', + \ }, \ ], \ ale_linters#python#flake8#Handle(1, [ \ 'stdin:6:6: E111 indentation is not a multiple of four', \ 'stdin:7:6: W123 some warning', + \ 'stdin:8:3: E999 SyntaxError: invalid syntax', \ ]) Execute(The flake8 handler should set end column indexes should be set for certain errors): |