diff --git a/providertests/recorder_test.go b/providertests/recorder_test.go index cf74fce496639f155175b45dee1fadf11f2c7822..f7ade6c446f5b5e00a02f19795f98195839f8a42 100644 --- a/providertests/recorder_test.go +++ b/providertests/recorder_test.go @@ -59,6 +59,7 @@ func customMatcher(t *testing.T) recorder.MatcherFunc { func marshalFunc(in any) ([]byte, error) { var buff bytes.Buffer enc := yaml.NewEncoder(&buff) + enc.SetIndent(2) enc.CompactSeqIndent() if err := enc.Encode(in); err != nil { return nil, err