Fixed handle test for Windows

Needed to add correct separator to test data.
This commit is contained in:
Øyvind Ingvaldsen 2018-05-04 23:04:45 +02:00
parent df8c45ed55
commit 3bc07b482b
1 changed files with 2 additions and 2 deletions

View File

@ -10,9 +10,9 @@ Before:
runtime ale_linters/nasm/nasm.vim
let b:command_tail =
\ ' -X gnu -I ' . ale#Escape(getcwd() . '/') . ' %s'
\ ' -X gnu -I ' . ale#Escape(getcwd() . (has('win32') ? '\' : '/')) . ' %s'
let b:command_tail_opt =
\ ' -X gnu -I ' . ale#Escape(getcwd() . '/') . ' -w+orphan-labels %s'
\ ' -X gnu -I ' . ale#Escape(getcwd() . (has('win32') ? '\' : '/')) . ' -w+orphan-labels %s'
After:
Restore