From c7216b9a1be9e08492cf6c2f5e6272438c247aa1 Mon Sep 17 00:00:00 2001 From: Jefftree Date: Wed, 1 Apr 2020 14:25:51 -0700 Subject: [PATCH] Fix unmarshal for tests without behaviors --- test/conformance/behaviors/behaviors_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/conformance/behaviors/behaviors_test.go b/test/conformance/behaviors/behaviors_test.go index 6bec6bdcbbb..b3f7163314e 100644 --- a/test/conformance/behaviors/behaviors_test.go +++ b/test/conformance/behaviors/behaviors_test.go @@ -56,7 +56,7 @@ func validateSuite(path string, t *testing.T) { if err != nil { t.Errorf("%q", err.Error()) } - err = yaml.UnmarshalStrict(yamlFile, &suite) + err = yaml.Unmarshal(yamlFile, &suite) if err != nil { t.Errorf("%q", err.Error())