diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_rust_handler.vader | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/handler/test_rust_handler.vader b/test/handler/test_rust_handler.vader index b7c8f9c6..38228f38 100644 --- a/test/handler/test_rust_handler.vader +++ b/test/handler/test_rust_handler.vader @@ -3,14 +3,18 @@ Execute(The Rust handler should handle rustc output): \ [ \ { \ 'lnum': 15, + \ 'end_lnum': 15, \ 'type': 'E', \ 'col': 418, + \ 'end_col': 421, \ 'text': 'expected one of `.`, `;`, `?`, `}`, or an operator, found `for`', \ }, \ { \ 'lnum': 13, + \ 'end_lnum': 13, \ 'type': 'E', \ 'col': 407, + \ 'end_col': 410, \ 'text': 'no method named `wat` found for type `std::string::String` in the current scope', \ }, \ ], @@ -28,14 +32,18 @@ Execute(The Rust handler should handle cargo output): \ [ \ { \ 'lnum': 15, + \ 'end_lnum': 15, \ 'type': 'E', \ 'col': 11505, + \ 'end_col': 11508, \ 'text': 'expected one of `.`, `;`, `?`, `}`, or an operator, found `for`', \ }, \ { \ 'lnum': 13, + \ 'end_lnum': 13, \ 'type': 'E', \ 'col': 11494, + \ 'end_col': 11497, \ 'text': 'no method named `wat` found for type `std::string::String` in the current scope', \ }, \ ], |