summaryrefslogtreecommitdiff
path: root/test/fixers/test_python_fixer_command_callback.vader
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixers/test_python_fixer_command_callback.vader')
-rw-r--r--test/fixers/test_python_fixer_command_callback.vader8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/fixers/test_python_fixer_command_callback.vader b/test/fixers/test_python_fixer_command_callback.vader
index 59135d38..7ee0cafe 100644
--- a/test/fixers/test_python_fixer_command_callback.vader
+++ b/test/fixers/test_python_fixer_command_callback.vader
@@ -11,18 +11,18 @@ After:
Execute(The python GetExecutable callbacks should return the correct path):
AssertEqual
\ '',
- \ ale#handlers#python#GetExecutable(bufnr(''), 'isort')
+ \ ale#python#GetExecutable(bufnr(''), 'isort')
silent execute 'file ' . fnameescape(g:dir . '/python_paths/with_virtualenv/subdir/foo/bar.py')
AssertEqual
\ g:dir . '/python_paths/with_virtualenv/env/bin/isort',
- \ ale#handlers#python#GetExecutable(bufnr(''), 'isort')
+ \ ale#python#GetExecutable(bufnr(''), 'isort')
AssertEqual
\ g:dir . '/python_paths/with_virtualenv/env/bin/autopep8',
- \ ale#handlers#python#GetExecutable(bufnr(''), 'autopep8')
+ \ ale#python#GetExecutable(bufnr(''), 'autopep8')
AssertEqual
\ g:dir . '/python_paths/with_virtualenv/env/bin/yapf',
- \ ale#handlers#python#GetExecutable(bufnr(''), 'yapf')
+ \ ale#python#GetExecutable(bufnr(''), 'yapf')
Execute(The autopep8 callbacks should return the correct default values):