From 43c39f205f524dca21d1c700625e7dd07383b10b Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Wed, 24 Sep 2025 11:04:37 -0300 Subject: [PATCH] chore: force yaml indent to 2 --- providertests/recorder_test.go | 1 + 1 file changed, 1 insertion(+) 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