From 30fd6fd0c245430c265473cf451cdb19cf427127 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 5 Feb 2024 09:31:59 +0000 Subject: [PATCH] Fix test command --- after/plugin/vim-test.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/after/plugin/vim-test.lua b/after/plugin/vim-test.lua index fd38419..9a1b55b 100644 --- a/after/plugin/vim-test.lua +++ b/after/plugin/vim-test.lua @@ -15,6 +15,6 @@ vim.cmd [[ let test#neovim#start_normal = 1 let test#strategy = "neoterm" - let test#php#phpunit#executable = 'run test' + let test#php#phpunit#executable = './run test' let test#php#phpunit#options = '--colors=always --testdox' ]]