From 151103042a42c853fcfa900bb9260588bf17570a Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Tue, 30 Nov 2021 15:16:38 -0500 Subject: [PATCH] e2e: clarify apphash reporting (#7348) (#7352) (cherry picked from commit 24dcba923046bbc7fb558bee5920fcb02f3c457b) Co-authored-by: Sam Kleinman --- test/e2e/tests/app_test.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/e2e/tests/app_test.go b/test/e2e/tests/app_test.go index ab6f9739e..9c1b04910 100644 --- a/test/e2e/tests/app_test.go +++ b/test/e2e/tests/app_test.go @@ -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") }