From 0bc1b1d4f00ef75bd249bfd38cefed9ab885e8ce Mon Sep 17 00:00:00 2001 From: ray-x Date: Sat, 2 Mar 2024 23:18:16 +1100 Subject: [PATCH] test spec --- lua/tests/go_test_spec.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tests/go_test_spec.lua b/lua/tests/go_test_spec.lua index bcf3cb0..acd9547 100644 --- a/lua/tests/go_test_spec.lua +++ b/lua/tests/go_test_spec.lua @@ -24,7 +24,7 @@ describe('should run func test', function() vim.fn.setpos('.', { 0, 5, 11, 0 }) local cmd = require('go.gotest').test_func() - eq({ 'go', 'test', './coverage', '-run="^\\QTest_branch\\E$"' }, cmd) + eq({ 'go', 'test', './coverage', '-run='^\\QTest_branch\\E$'' }, cmd) end) it('should test function inside a source code', function() --