From f4f08c33788c2d1f97add9fa644b6ed851a1b8dd Mon Sep 17 00:00:00 2001 From: Vishnu Kannan Date: Tue, 7 Apr 2015 23:29:24 +0000 Subject: [PATCH] Fix duplicate fuzz config. --- pkg/api/testing/fuzzer.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/api/testing/fuzzer.go b/pkg/api/testing/fuzzer.go index ae3df8de5ce..04a4bec3f54 100644 --- a/pkg/api/testing/fuzzer.go +++ b/pkg/api/testing/fuzzer.go @@ -173,7 +173,6 @@ func FuzzerFor(t *testing.T, version string, src rand.Source) *fuzz.Fuzzer { func(vs *api.VolumeSource, c fuzz.Continue) { // Exactly one of the fields should be set. //FIXME: the fuzz can still end up nil. What if fuzz allowed me to say that? - fuzzOneOf(c, &vs.HostPath, &vs.EmptyDir, &vs.GCEPersistentDisk, &vs.GitRepo, &vs.Secret, &vs.NFS, &vs.ISCSI) fuzzOneOf(c, &vs.HostPath, &vs.EmptyDir, &vs.GCEPersistentDisk, &vs.GitRepo, &vs.Secret, &vs.NFS, &vs.ISCSI, &vs.Glusterfs) }, func(d *api.DNSPolicy, c fuzz.Continue) {