From 89c932352ba271af22706a11170e9d538b758dea Mon Sep 17 00:00:00 2001 From: William Banfield Date: Mon, 14 Mar 2022 17:34:33 -0400 Subject: [PATCH] comment types_test --- abci/types/types_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/abci/types/types_test.go b/abci/types/types_test.go index 4417ffe7d..f79a24454 100644 --- a/abci/types/types_test.go +++ b/abci/types/types_test.go @@ -12,8 +12,10 @@ import ( func TestHashAndProveResults(t *testing.T) { trs := []*abci.ExecTxResult{ + // Note, these tests rely on the first two entries being in this order. {Code: 0, Data: nil}, {Code: 0, Data: []byte{}}, + {Code: 0, Data: []byte("one")}, {Code: 14, Data: nil}, {Code: 14, Data: []byte("foo")},