summaryrefslogtreecommitdiff
path: root/tests/e2e/fuzz_args_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/e2e/fuzz_args_test.go')
-rw-r--r--tests/e2e/fuzz_args_test.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/e2e/fuzz_args_test.go b/tests/e2e/fuzz_args_test.go
index 0d71e0e..1007f32 100644
--- a/tests/e2e/fuzz_args_test.go
+++ b/tests/e2e/fuzz_args_test.go
@@ -15,10 +15,7 @@ func FuzzArgumentIntegrity(f *testing.F) {
f.Add("\x00null\x00")
f.Fuzz(func(t *testing.T, payload string) {
- binaryPath, err := GetBinaryPath()
- if err != nil {
- t.Skip("Skipping E2E fuzz test: wg-wrap binary not found (WG_WRAP_BIN not set)")
- }
+ binaryPath := EnsureBinary(t)
out, err := exec.Command(binaryPath, "test-args", payload).CombinedOutput()