e2e: clarify apphash reporting (#7348) (#7352)

(cherry picked from commit 24dcba9230)

Co-authored-by: Sam Kleinman <garen@tychoish.com>
This commit is contained in:
mergify[bot]
2021-11-30 15:16:38 -05:00
committed by GitHub
parent ebe57960f7
commit 151103042a

View File

@@ -51,7 +51,9 @@ func TestApp_Hash(t *testing.T) {
require.NoError(t, err)
if info.Response.LastBlockHeight == block.Block.Height {
require.EqualValues(t, info.Response.LastBlockAppHash, block.Block.AppHash.Bytes(),
require.Equal(t,
fmt.Sprintf("%x", info.Response.LastBlockAppHash),
fmt.Sprintf("%x", block.Block.AppHash.Bytes()),
"app hash does not match last block's app hash")
}