golden file in subfolder trigger MkDir ¯\_(ツ)_/¯

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
This commit is contained in:
Nicolas De Loof 2021-02-02 15:44:37 +01:00
parent 6215445b8a
commit e48ad7d6c0
No known key found for this signature in database
GPG Key ID: 9858809D6F8F6E7E
2 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ func TestSimpleConvert(t *testing.T) {
resultAsJSON, err := marshall(template, "yaml") resultAsJSON, err := marshall(template, "yaml")
assert.NilError(t, err) assert.NilError(t, err)
result := fmt.Sprintf("%s\n", string(resultAsJSON)) result := fmt.Sprintf("%s\n", string(resultAsJSON))
expected := "simple/simple-cloudformation-conversion.golden" expected := "simple-cloudformation-conversion.golden"
golden.Assert(t, result, expected) golden.Assert(t, result, expected)
} }