From 048c1957f136347826990513d198e58d049446cd Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 14 Oct 2025 01:48:56 +0900 Subject: helper/args: variadic check function This package turns out to be much less widely used than anticipated, and might be facing removal. This change makes test cases cleaner. Signed-off-by: Ophestra --- helper/helper_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'helper/helper_test.go') diff --git a/helper/helper_test.go b/helper/helper_test.go index 45f7bc96..4cc36d34 100644 --- a/helper/helper_test.go +++ b/helper/helper_test.go @@ -27,7 +27,7 @@ var ( } wantPayload = strings.Join(wantArgs, "\x00") + "\x00" - argsWt = helper.MustNewCheckedArgs(wantArgs) + argsWt = helper.MustNewCheckedArgs(wantArgs...) ) func argF(argsFd, statFd int) []string { -- cgit v1.3.1