diff options
Diffstat (limited to 'test/test_nearest_file_search.vader')
-rw-r--r-- | test/test_nearest_file_search.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_nearest_file_search.vader b/test/test_nearest_file_search.vader index c59bfce2..c2499ad2 100644 --- a/test/test_nearest_file_search.vader +++ b/test/test_nearest_file_search.vader @@ -3,9 +3,9 @@ Execute(Open a file some directory down): :e! top/middle/bottom/dummy.txt Then(We should be able to find a configuration file further up): - AssertEqual expand('%:p:h:h:h:h') . '/top/example.ini', ale#util#FindNearestFile(bufnr('%'), 'example.ini') + AssertEqual expand('%:p:h:h:h:h') . '/top/example.ini', ale#path#FindNearestFile(bufnr('%'), 'example.ini') Execute(Do nothing): Then(We shouldn't find anything for files which don't match): - AssertEqual '', ale#util#FindNearestFile(bufnr('%'), 'cantfindthis') + AssertEqual '', ale#path#FindNearestFile(bufnr('%'), 'cantfindthis') |