diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-16 19:46:19 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-16 19:46:19 +0100 |
commit | e2860f8a26dc9c04bb4ad6fb59ffb8c743717149 (patch) | |
tree | e2ac3b3da9d9ac9ed09efa1bcfc063d6d3eb4c42 /test | |
parent | 1b53fa841b914478bd2c68c4c471d9be4ad05798 (diff) | |
download | ale-e2860f8a26dc9c04bb4ad6fb59ffb8c743717149.zip |
#538 Fix an off-by-one bug with end columns
Diffstat (limited to 'test')
-rw-r--r-- | test/test_highlight_placement.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_highlight_placement.vader b/test/test_highlight_placement.vader index e43b0dc1..b5878922 100644 --- a/test/test_highlight_placement.vader +++ b/test/test_highlight_placement.vader @@ -146,7 +146,7 @@ Execute(Higlight end columns should set an appropriate size): AssertEqual \ [ - \ {'group': 'ALEError', 'id': 15, 'priority': 10, 'pos1': [3, 2, 3]}, - \ {'group': 'ALEWarning', 'id': 16, 'priority': 10, 'pos1': [4, 1, 4]}, + \ {'group': 'ALEError', 'id': 15, 'priority': 10, 'pos1': [3, 2, 4]}, + \ {'group': 'ALEWarning', 'id': 16, 'priority': 10, 'pos1': [4, 1, 5]}, \ ], \ getmatches() |