diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-10-14 01:48:56 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-10-14 01:48:56 +0900 |
| commit | 048c1957f136347826990513d198e58d049446cd (patch) | |
| tree | 14953fd43820640ec8595a626934528203f15b3b /helper/helper_test.go | |
| parent | 790d77075e40ee3162d7925e983f01747b5c2c89 (diff) | |
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 <cat@gensokyo.uk>
Diffstat (limited to 'helper/helper_test.go')
| -rw-r--r-- | helper/helper_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |
