From 1e4524059217180e7a2167c50aa2487dc0df4cd3 Mon Sep 17 00:00:00 2001 From: Alex Malykh <49870662+ysomad@users.noreply.github.com> Date: Sun, 26 Nov 2023 00:52:29 +0400 Subject: [PATCH] remove named arg from add_test() --- lua/gopher/gotests.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lua/gopher/gotests.lua b/lua/gopher/gotests.lua index 0ef52cc..f98b365 100644 --- a/lua/gopher/gotests.lua +++ b/lua/gopher/gotests.lua @@ -6,10 +6,6 @@ local gotests = {} ---@param args table local function add_test(args) - if c.gotests.named then - table.insert(args, "-named") - end - if c.gotests.template_dir then table.insert(args, "-template_dir") table.insert(args, c.gotests.template_dir)