From 1b82f2cd835afec888bb0c1d66c1e41c7c1d4112 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Sat, 5 Jul 2025 18:47:57 -0400 Subject: [PATCH] tape: Use tu.Describe() in tests --- tape/dynamic_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tape/dynamic_test.go b/tape/dynamic_test.go index afb93d7..9daab51 100644 --- a/tape/dynamic_test.go +++ b/tape/dynamic_test.go @@ -183,8 +183,8 @@ func testEncodeDecodeAny(test *testing.T, value, correctValue any) error { _, decoded, n, err := decAny(bytes) if err != nil { return err } - test.Log("got: ", decoded) - test.Log("correct:", correctValue) + test.Log("got: ", tu.Describe(decoded)) + test.Log("correct:", tu.Describe(correctValue)) if !reflect.DeepEqual(decoded, correctValue) { return fmt.Errorf("values not equal") }