Browse Source

small fix

pull/1780/head
Ethan Buchman 7 years ago
parent
commit
a3ac825490
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      tests/test_app/app.go

+ 1
- 1
tests/test_app/app.go View File

@ -59,7 +59,7 @@ func commit(client abcicli.Client, hashExp []byte) {
res := client.CommitSync()
_, data, log := res.Code, res.Data, res.Log
if res.IsErr() {
panic(fmt.Sprintf("committing %v\nlog: %v", log, res.Log))
panic(fmt.Sprintf("committing err %v\n", res))
}
if !bytes.Equal(res.Data, hashExp) {
panic(fmt.Sprintf("Commit hash was unexpected. Got %X expected %X",


Loading…
Cancel
Save