Remove a test for experimental functionality which was removed

This commit is contained in:
w0rp 2017-03-21 13:58:08 +00:00
parent 3e13e10e03
commit c59204b94f
1 changed files with 0 additions and 21 deletions

View File

@ -19,7 +19,6 @@ Before:
\})
After:
let g:ale_use_ch_sendraw = 0
let g:ale_buffer_info = {}
delfunction TestCallback
call ale#linter#Reset()
@ -46,23 +45,3 @@ Execute(Linters should run with the default options):
\ 'pattern': '',
\ 'valid': 1,
\ }], getloclist(0)
Execute(Linters should run with `let g:ale_use_ch_sendraw = 1`):
AssertEqual 'foobar', &filetype
let g:ale_use_ch_sendraw = 1
call ale#Lint()
call ale#engine#WaitForJobs(2000)
AssertEqual [{
\ 'bufnr': bufnr('%'),
\ 'lnum': 2,
\ 'vcol': 0,
\ 'col': 3,
\ 'text': 'foo bar',
\ 'type': 'E',
\ 'nr': -1,
\ 'pattern': '',
\ 'valid': 1,
\ }], getloclist(0)