From b44bd4e24f0c5cf139c428c1239307f3428a0af4 Mon Sep 17 00:00:00 2001 From: oaue Date: Mon, 19 Jun 2017 12:45:09 +0200 Subject: handle column number in javac linter (#660) * handle column number in javac linter * Updated tests with column number for javac errors. * Updated tests with column number for javac errors. --- test/handler/test_javac_handler.vader | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test/handler/test_javac_handler.vader') diff --git a/test/handler/test_javac_handler.vader b/test/handler/test_javac_handler.vader index d190ab78..2cf32072 100644 --- a/test/handler/test_javac_handler.vader +++ b/test/handler/test_javac_handler.vader @@ -14,11 +14,13 @@ Execute(The javac handler should handle cannot find symbol errors): \ }, \ { \ 'lnum': 2, + \ 'col': 5, \ 'text': 'error: cannot find symbol: BadName', \ 'type': 'E', \ }, \ { \ 'lnum': 34, + \ 'col': 5, \ 'text': 'error: cannot find symbol: BadName2', \ 'type': 'E', \ }, @@ -29,6 +31,7 @@ Execute(The javac handler should handle cannot find symbol errors): \ }, \ { \ 'lnum': 42, + \ 'col': 11, \ 'text': 'error: cannot find symbol: bar()', \ 'type': 'E', \ }, -- cgit v1.2.3