summaryrefslogtreecommitdiff
path: root/test/test_quickfix_deduplication.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-04-10 21:05:22 +0100
committerw0rp <devw0rp@gmail.com>2018-04-10 21:05:22 +0100
commitf064ba48f5893f25c1af9459b309a919a392db7c (patch)
tree00b33c7c7f86ae201ca5908b2a7e9f71c3588ac2 /test/test_quickfix_deduplication.vader
parent3f0e1cd05dc526b073946ad96c64f6a5e2f9e4e6 (diff)
downloadale-f064ba48f5893f25c1af9459b309a919a392db7c.zip
Close #1494 - Prefer displaying higher severity problems for cursor messages, balloons, and highlights
Diffstat (limited to 'test/test_quickfix_deduplication.vader')
-rw-r--r--test/test_quickfix_deduplication.vader60
1 files changed, 30 insertions, 30 deletions
diff --git a/test/test_quickfix_deduplication.vader b/test/test_quickfix_deduplication.vader
index 0dff3f2e..9cb8b931 100644
--- a/test/test_quickfix_deduplication.vader
+++ b/test/test_quickfix_deduplication.vader
@@ -9,42 +9,42 @@ Execute:
" Equal problems should be de-duplicated.
let g:ale_buffer_info = {
\ '1': {'loclist': [
- \ {'bufnr': 2, 'lnum': 1, 'col': 2, 'text': 'foo'},
- \ {'bufnr': 2, 'lnum': 1, 'col': 5, 'text': 'bar'},
- \ {'bufnr': -1, 'filename': 'c', 'lnum': 3, 'col': 2, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 5, 'col': 4, 'text': 'x'},
- \ {'bufnr': 2, 'lnum': 5, 'col': 5, 'text': 'foo'},
- \ {'bufnr': 1, 'lnum': 2, 'col': 10, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 3, 'col': 2, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 5, 'col': 5, 'text': 'x'},
- \ {'bufnr': -1, 'filename': 'b', 'lnum': 4, 'col': 2, 'text': 'x'},
- \ {'bufnr': -1, 'filename': 'b', 'lnum': 5, 'col': 2, 'text': 'x'},
- \ {'bufnr': 3, 'lnum': 1, 'col': 1, 'text': 'foo'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 1, 'col': 2, 'text': 'foo'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 1, 'col': 5, 'text': 'bar'},
+ \ {'type': 'E', 'bufnr': -1, 'filename': 'c', 'lnum': 3, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 5, 'col': 4, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 5, 'col': 5, 'text': 'foo'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 2, 'col': 10, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 3, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 5, 'col': 5, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': -1, 'filename': 'b', 'lnum': 4, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': -1, 'filename': 'b', 'lnum': 5, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 3, 'lnum': 1, 'col': 1, 'text': 'foo'},
\ ]},
\ '2': {'loclist': [
- \ {'bufnr': 1, 'lnum': 2, 'col': 10, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 5, 'col': 5, 'text': 'x'},
- \ {'bufnr': 2, 'lnum': 1, 'col': 2, 'text': 'foo'},
- \ {'bufnr': 1, 'lnum': 3, 'col': 2, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 5, 'col': 4, 'text': 'x'},
- \ {'bufnr': 2, 'lnum': 1, 'col': 5, 'text': 'bar'},
- \ {'bufnr': 2, 'lnum': 5, 'col': 5, 'text': 'another error'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 2, 'col': 10, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 5, 'col': 5, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 1, 'col': 2, 'text': 'foo'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 3, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 5, 'col': 4, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 1, 'col': 5, 'text': 'bar'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 5, 'col': 5, 'text': 'another error'},
\ ]},
\}
AssertEqual
\ [
- \ {'bufnr': -1, 'filename': 'b', 'lnum': 4, 'col': 2, 'text': 'x'},
- \ {'bufnr': -1, 'filename': 'b', 'lnum': 5, 'col': 2, 'text': 'x'},
- \ {'bufnr': -1, 'filename': 'c', 'lnum': 3, 'col': 2, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 2, 'col': 10, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 3, 'col': 2, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 5, 'col': 4, 'text': 'x'},
- \ {'bufnr': 1, 'lnum': 5, 'col': 5, 'text': 'x'},
- \ {'bufnr': 2, 'lnum': 1, 'col': 2, 'text': 'foo'},
- \ {'bufnr': 2, 'lnum': 1, 'col': 5, 'text': 'bar'},
- \ {'bufnr': 2, 'lnum': 5, 'col': 5, 'text': 'another error'},
- \ {'bufnr': 2, 'lnum': 5, 'col': 5, 'text': 'foo'},
- \ {'bufnr': 3, 'lnum': 1, 'col': 1, 'text': 'foo'},
+ \ {'type': 'E', 'bufnr': -1, 'filename': 'b', 'lnum': 4, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': -1, 'filename': 'b', 'lnum': 5, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': -1, 'filename': 'c', 'lnum': 3, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 2, 'col': 10, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 3, 'col': 2, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 5, 'col': 4, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 1, 'lnum': 5, 'col': 5, 'text': 'x'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 1, 'col': 2, 'text': 'foo'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 1, 'col': 5, 'text': 'bar'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 5, 'col': 5, 'text': 'another error'},
+ \ {'type': 'E', 'bufnr': 2, 'lnum': 5, 'col': 5, 'text': 'foo'},
+ \ {'type': 'E', 'bufnr': 3, 'lnum': 1, 'col': 1, 'text': 'foo'},
\ ],
\ ale#list#GetCombinedList()