Skip to content

Commit 7d13dfe

Browse files
authored
Merge pull request kubernetes#84409 from BrendanSChang/fuzz
Change FuzzTime to FuzzTimeStrict for naming consistency
2 parents 3d7318f + 03a650f commit 7d13dfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/fuzz/yaml/yaml.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ func FuzzSigYaml(b []byte) int {
8181
return out
8282
}
8383

84-
// FuzzTime is a fuzz target for strict-unmarshaling Time defined in
84+
// FuzzTimeStrict is a fuzz target for strict-unmarshaling Time defined in
8585
// "k8s.io/apimachinery/pkg/apis/meta/v1". This target also checks that the
8686
// unmarshaled result can be marshaled back to the input.
87-
func FuzzTime(b []byte) int {
87+
func FuzzTimeStrict(b []byte) int {
8888
var timeHolder struct {
8989
T metav1.Time `json:"t"`
9090
}

0 commit comments

Comments
 (0)