Fix unmarshal for tests without behaviors

This commit is contained in:
Jefftree 2020-04-01 14:25:51 -07:00
parent ceb67482c4
commit c7216b9a1b

View File

@ -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())