diff options
Diffstat (limited to 'internal/testutil/golden.go')
-rw-r--r-- | internal/testutil/golden.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/testutil/golden.go b/internal/testutil/golden.go index 7f0295a0..57800e17 100644 --- a/internal/testutil/golden.go +++ b/internal/testutil/golden.go @@ -29,7 +29,7 @@ func Update(name string) bool { // AssertGolden compares what's got and what's in the golden file. It updates // the golden file on-demand. It does nothing when the runtime is "windows". -func AssertGolden(t testing.TB, path string, update bool, got interface{}) { +func AssertGolden(t testing.TB, path string, update bool, got any) { if runtime.GOOS == "windows" { t.Skip("Skipping testing on Windows") return @@ -59,7 +59,7 @@ func AssertGolden(t testing.TB, path string, update bool, got interface{}) { assert.Equal(t, string(golden), string(data)) } -func marshal(t testing.TB, v interface{}) []byte { +func marshal(t testing.TB, v any) []byte { t.Helper() switch v2 := v.(type) { |