fix lint.

This commit is contained in:
Raúl Kripalani 2023-03-09 14:59:56 +00:00 committed by Jennifer Wang
parent 6a7895bf49
commit 558eaf8b61

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()