diff options
Diffstat (limited to 'test/test_puppet_path_detection.vader')
-rw-r--r-- | test/test_puppet_path_detection.vader | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_puppet_path_detection.vader b/test/test_puppet_path_detection.vader index f8d3a0fa..e918e916 100644 --- a/test/test_puppet_path_detection.vader +++ b/test/test_puppet_path_detection.vader @@ -8,15 +8,15 @@ After: call ale#linter#Reset() Execute(old-style module should find its root correctly): - call ale#test#SetFilename('puppet-test-files/old-style-module/manifests/init.pp') + call ale#test#SetFilename('test-files/puppet/old-style-module/manifests/init.pp') AssertEqual - \ ale#path#Simplify(g:dir . '/puppet-test-files/old-style-module'), + \ ale#path#Simplify(g:dir . '/test-files/puppet/old-style-module'), \ ale_linters#puppet#languageserver#GetProjectRoot(bufnr('')) Execute(new-style module should find its root correctly): - call ale#test#SetFilename('puppet-test-files/new-style-module/lib/puppet/types/exampletype.rb') + call ale#test#SetFilename('test-files/puppet/new-style-module/lib/puppet/types/exampletype.rb') AssertEqual - \ ale#path#Simplify(g:dir . '/puppet-test-files/new-style-module'), + \ ale#path#Simplify(g:dir . '/test-files/puppet/new-style-module'), \ ale_linters#puppet#languageserver#GetProjectRoot(bufnr('')) |