From e71ae3b8c5b4a8f103a078783fef2f56ee5450a2 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Fri, 25 Jul 2025 00:43:22 +0900 Subject: container: remove custom cmd initialisation This part of the interface is very unintuitive and only used for testing, even in testing it is inelegant and can be done better. Signed-off-by: Ophestra --- helper/helper_test.go | 1 - 1 file changed, 1 deletion(-) (limited to 'helper/helper_test.go') diff --git a/helper/helper_test.go b/helper/helper_test.go index cc6f892e..ef4b6bca 100644 --- a/helper/helper_test.go +++ b/helper/helper_test.go @@ -38,7 +38,6 @@ func argF(argsFd, statFd int) []string { func argFChecked(argsFd, statFd int) (args []string) { args = make([]string, 0, 6) - args = append(args, "-test.run=TestHelperStub", "--") if argsFd > -1 { args = append(args, "--args", strconv.Itoa(argsFd)) } -- cgit v1.3.1