summaryrefslogtreecommitdiff
path: root/test/command_callback/test_gotype_command_callback.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2020-08-28 17:46:43 +0100
committerw0rp <devw0rp@gmail.com>2020-08-28 17:46:43 +0100
commit3d5a2690ce707cbc9e71e8ed4d5d1955e4b26d65 (patch)
tree3ff7e13bb0cd6fd13ef4eae739230b40f0c490de /test/command_callback/test_gotype_command_callback.vader
parent34e409ea21baa017776b84ec0620eea9f6ec429c (diff)
downloadale-3d5a2690ce707cbc9e71e8ed4d5d1955e4b26d65.zip
#3325 - ale#path#BufferCdString now generates %s:h
Diffstat (limited to 'test/command_callback/test_gotype_command_callback.vader')
-rw-r--r--test/command_callback/test_gotype_command_callback.vader7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/command_callback/test_gotype_command_callback.vader b/test/command_callback/test_gotype_command_callback.vader
index 1334fcff..204197d9 100644
--- a/test/command_callback/test_gotype_command_callback.vader
+++ b/test/command_callback/test_gotype_command_callback.vader
@@ -11,7 +11,8 @@ After:
Execute(The default gotype command should be correct):
AssertLinter 'gotype',
- \ ale#path#CdString(expand('%:p:h')) . ' gotype -e .'
+ \ ale#path#BufferCdString(bufnr(''))
+ \ . ' gotype -e .'
Execute(The gotype callback should ignore test files):
call ale#test#SetFilename('bla_test.go')
@@ -22,6 +23,6 @@ Execute(The gotype callback should support Go environment variables):
let b:ale_go_go111module = 'on'
AssertLinter 'gotype',
- \ ale#path#CdString(expand('%:p:h')) . ' '
- \ . ale#Env('GO111MODULE', 'on')
+ \ ale#path#BufferCdString(bufnr(''))
+ \ . ' ' . ale#Env('GO111MODULE', 'on')
\ . 'gotype -e .'