summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJohn Sivak <jsivak@winterjewel.com>2017-06-25 13:22:13 -0400
committerw0rp <w0rp@users.noreply.github.com>2017-06-25 18:22:13 +0100
commita9b29fef28a72291ada90e30d8b25ee12351d825 (patch)
treeccc11b7656e1c034e11367c918ccc6e6e764dece /test
parentc2f69b77501d098fdd973c332d08e18d8e30abd0 (diff)
downloadale-a9b29fef28a72291ada90e30d8b25ee12351d825.zip
Feature/restore display of symbol (#693)
* Add display of the pylint symbol name after the message. * Update test to pass.
Diffstat (limited to 'test')
-rw-r--r--test/handler/test_pylint_handler.vader10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/handler/test_pylint_handler.vader b/test/handler/test_pylint_handler.vader
index 590a795f..d8ce0438 100644
--- a/test/handler/test_pylint_handler.vader
+++ b/test/handler/test_pylint_handler.vader
@@ -11,31 +11,31 @@ Execute(pylint handler parsing, translating columns to 1-based index):
\ {
\ 'lnum': 4,
\ 'col': 1,
- \ 'text': 'C0303: Trailing whitespace',
+ \ 'text': 'C0303: Trailing whitespace (trailing-whitespace)',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 1,
\ 'col': 1,
- \ 'text': 'C0111: Missing module docstring',
+ \ 'text': 'C0111: Missing module docstring (missing-docstring)',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 2,
\ 'col': 1,
- \ 'text': 'C0111: Missing function docstring',
+ \ 'text': 'C0111: Missing function docstring (missing-docstring)',
\ 'type': 'W',
\ },
\ {
\ 'lnum': 3,
\ 'col': 5,
- \ 'text': 'E0103: ''break'' not properly in loop',
+ \ 'text': 'E0103: ''break'' not properly in loop (not-in-loop)',
\ 'type': 'E',
\ },
\ {
\ 'lnum': 4,
\ 'col': 5,
- \ 'text': 'W0101: Unreachable code',
+ \ 'text': 'W0101: Unreachable code (unreachable)',
\ 'type': 'W',
\ },
\ ],