fix lint.

This commit is contained in:
Raúl Kripalani 2023-03-09 14:59:56 +00:00
parent 941ef84b71
commit d38bdcebfd

View File

@ -323,8 +323,8 @@ func TestGetBlockByNumber(t *testing.T) {
defer cancel()
ch, err := client.ChainNotify(tctx)
require.NoError(t, err)
hc := <-ch // current
hc = <-ch // wait for next block
<-ch // current
hc := <-ch // wait for next block
require.Equal(t, store.HCApply, hc[0].Type)
afterNullHeight := hc[0].Val.Height()