diff options
author | w0rp <devw0rp@gmail.com> | 2020-08-28 19:50:36 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-08-28 19:50:36 +0100 |
commit | 7d4ce4e6aa960a6052a16d90322566d6f4fddb7c (patch) | |
tree | 0f191e0dff643cc4b53f6dbd5259fef028d7a0dd /test/command_callback/test_pyrex_cython_command_callback.vader | |
parent | 3d5a2690ce707cbc9e71e8ed4d5d1955e4b26d65 (diff) | |
download | ale-7d4ce4e6aa960a6052a16d90322566d6f4fddb7c.zip |
Close #3325 - Apply new formatting where possible
Diffstat (limited to 'test/command_callback/test_pyrex_cython_command_callback.vader')
-rw-r--r-- | test/command_callback/test_pyrex_cython_command_callback.vader | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/command_callback/test_pyrex_cython_command_callback.vader b/test/command_callback/test_pyrex_cython_command_callback.vader index b9020f11..af86366a 100644 --- a/test/command_callback/test_pyrex_cython_command_callback.vader +++ b/test/command_callback/test_pyrex_cython_command_callback.vader @@ -6,8 +6,8 @@ After: Execute(The default cython command should be correct): AssertLinter 'cython', ale#Escape('cython') - \ . ' --working ' . ale#Escape(g:dir) - \ . ' --include-dir ' . ale#Escape(g:dir) + \ . ' --working %s:h' + \ . ' --include-dir %s:h' \ . ' --warning-extra' \ . ' --output-file ' . g:ale#util#nul_file . ' %t' @@ -15,8 +15,8 @@ Execute(The cython executable should be configurable): let b:ale_pyrex_cython_executable = 'cython_foobar' AssertLinter 'cython_foobar', ale#Escape('cython_foobar') - \ . ' --working ' . ale#Escape(g:dir) - \ . ' --include-dir ' . ale#Escape(g:dir) + \ . ' --working %s:h' + \ . ' --include-dir %s:h' \ . ' --warning-extra' \ . ' --output-file ' . g:ale#util#nul_file . ' %t' @@ -24,7 +24,7 @@ Execute(Additional cython options should be configurable): let b:ale_pyrex_cython_options = '--foobar' AssertLinter 'cython', ale#Escape('cython') - \ . ' --working ' . ale#Escape(g:dir) - \ . ' --include-dir ' . ale#Escape(g:dir) + \ . ' --working %s:h' + \ . ' --include-dir %s:h' \ . ' --foobar' \ . ' --output-file ' . g:ale#util#nul_file . ' %t' |