Skip to content

Commit c7216b9

Browse files
committed
Fix unmarshal for tests without behaviors
1 parent ceb6748 commit c7216b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/conformance/behaviors/behaviors_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func validateSuite(path string, t *testing.T) {
5656
if err != nil {
5757
t.Errorf("%q", err.Error())
5858
}
59-
err = yaml.UnmarshalStrict(yamlFile, &suite)
59+
err = yaml.Unmarshal(yamlFile, &suite)
6060

6161
if err != nil {
6262
t.Errorf("%q", err.Error())

0 commit comments

Comments
 (0)