Skip to content

Commit

Permalink
fix(adpater): avoid double path change
Browse files Browse the repository at this point in the history
Discovered in #31
  • Loading branch information
rcarriga committed May 23, 2021
1 parent 1174d43 commit cf7cb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/ultest/adapter.vim
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function! ultest#adapter#build_cmd(test, scope) abort
endif
let a:test.file = fnamemodify(a:test.file, get(g:, "test#filename_modifier", ":."))
call ultest#process#pre(a:test)
let runner = ultest#adapter#get_runner(a:test.file)
let runner = test#determine_runner(a:test.file)
let executable = test#base#executable(runner)

let base_args = test#base#build_position(runner, a:scope, a:test)
Expand Down

0 comments on commit cf7cb19

Please sign in to comment.