diff options
author | Horacio Sanson <horacio@allm.inc> | 2021-01-30 18:17:28 +0900 |
---|---|---|
committer | Horacio Sanson <horacio@allm.inc> | 2021-01-30 18:17:28 +0900 |
commit | dd1c665db26724ff70b72aca412896723d389126 (patch) | |
tree | a8e66b3aca0bb1d6741ac629f2842cf3ae029beb /test/handler | |
parent | d511d5af11041ffe7802a6027c76483506c232ad (diff) | |
download | ale-dd1c665db26724ff70b72aca412896723d389126.zip |
Fix tests on windows
Diffstat (limited to 'test/handler')
-rw-r--r-- | test/handler/test_terraform_handler.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/handler/test_terraform_handler.vader b/test/handler/test_terraform_handler.vader index b201f89a..64e2e578 100644 --- a/test/handler/test_terraform_handler.vader +++ b/test/handler/test_terraform_handler.vader @@ -15,14 +15,14 @@ Execute(The output should be correct): \ { \ 'lnum': 17, \ 'col': 13, - \ 'filename': '/testplugin/test/terraform_files/providers.tf', + \ 'filename': ale#path#Simplify(g:dir . '/providers.tf'), \ 'type': 'W', \ 'text': 'Terraform 0.13 and earlier allowed provider version', \ }, \ { \ 'lnum': 0, \ 'col': 0, - \ 'filename': '/testplugin/test/terraform_files/providers.tf', + \ 'filename': ale#path#Simplify(g:dir . '/providers.tf'), \ 'type': 'E', \ 'text': 'Plugin reinitialization required. Please run "terraform"', \ } |