From f2c4c8195d5ae23a3e0fa9d4ad650ffa61feed01 Mon Sep 17 00:00:00 2001 From: Anil Dasari Date: Fri, 24 Apr 2020 21:15:31 -0700 Subject: [PATCH] testcase fix --- ids/id_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ids/id_test.go b/ids/id_test.go index 512952b..c43dc3a 100644 --- a/ids/id_test.go +++ b/ids/id_test.go @@ -150,7 +150,7 @@ func TestIDUnmarshalJSON(t *testing.T) { func TestIDHex(t *testing.T) { id := NewID([32]byte{'a', 'v', 'a', ' ', 'l', 'a', 'b', 's'}) - expected := "617661206c61627300000000000000000000000000000000000000000000000000" + expected := "617661206c616273000000000000000000000000000000000000000000000000" actual := id.Hex() if actual != expected { t.Fatalf("got %s, expected %s", actual, expected)