diff options
author | Pawel Bogut <pawel.bogut@gmail.com> | 2017-05-08 21:17:54 +0100 |
---|---|---|
committer | Pawel Bogut <pawel.bogut@gmail.com> | 2017-05-08 21:17:54 +0100 |
commit | d7bdaeeab0506a526f47b8388a9fa7597d7232c0 (patch) | |
tree | fbc15111966cdcaef796f6db8571b33de7a5b160 /test | |
parent | 14f3fc777fc4a5e1fd1e1a7b75f4edf84b0a9af0 (diff) | |
download | ale-d7bdaeeab0506a526f47b8388a9fa7597d7232c0.zip |
Read errors from stdout only (and make sure they are displayed)
Diffstat (limited to 'test')
-rw-r--r-- | test/handler/test_php_handler.vader | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/handler/test_php_handler.vader b/test/handler/test_php_handler.vader index 086a4f6a..5dac0948 100644 --- a/test/handler/test_php_handler.vader +++ b/test/handler/test_php_handler.vader @@ -48,14 +48,14 @@ Execute(The php handler should parse lines correctly): \ ], \ ale_linters#php#php#Handle(347, [ \ 'This line should be ignored completely', - \ "Parse error: syntax error, This line should be ignored completely in - on line 1", - \ "PHP Parse error: syntax error, unexpected ';', expecting ']' in - on line 1", - \ "PHP Parse error: syntax error, unexpected '/', expecting function (T_FUNCTION) or const (T_CONST) in - on line 2", - \ "PHP Parse error: syntax error, unexpected ')' in - on line 3", - \ "PHP Parse error: syntax error, unexpected ''bar'' (T_CONSTANT_ENCAPSED_STRING), expecting ']' in - on line 4", - \ "PHP Fatal error: Cannot redeclare count() in - on line 5", - \ 'PHP Parse error: syntax error, unexpected end of file in - on line 21', - \ 'PHP Parse error: Invalid numeric literal in - on line 47', + \ "PHP Parse error: syntax error, This line should be ignored completely in - on line 1", + \ "Parse error: syntax error, unexpected ';', expecting ']' in - on line 1", + \ "Parse error: syntax error, unexpected '/', expecting function (T_FUNCTION) or const (T_CONST) in - on line 2", + \ "Parse error: syntax error, unexpected ')' in - on line 3", + \ "Parse error: syntax error, unexpected ''bar'' (T_CONSTANT_ENCAPSED_STRING), expecting ']' in - on line 4", + \ "Fatal error: Cannot redeclare count() in - on line 5", + \ 'Parse error: syntax error, unexpected end of file in - on line 21', + \ 'Parse error: Invalid numeric literal in - on line 47', \ ]) After: |