Browse Source

comment types_test

pull/8094/head
William Banfield 3 years ago
parent
commit
89c932352b
No known key found for this signature in database GPG Key ID: EFAD3442BF29E3AC
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      abci/types/types_test.go

+ 2
- 0
abci/types/types_test.go View File

@ -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")},


Loading…
Cancel
Save