Skip to content

Commit

Permalink
Resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric-Warehime committed Dec 27, 2022
1 parent 38200a3 commit 4804caf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/handlers_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1637,7 +1637,7 @@ func TestGetBlocksTransactionsLimit(t *testing.T) {
}

func TestGetBlockWithCompression(t *testing.T) {
db, shutdownFunc, proc, l := setupIdb(t, test.MakeGenesisV2())
db, shutdownFunc, proc, l := setupIdb(t, test.MakeGenesis())
defer shutdownFunc()
defer l.Close()

Expand All @@ -1659,7 +1659,7 @@ func TestGetBlockWithCompression(t *testing.T) {
block.BlockHeader.Round = basics.Round(1)
require.NoError(t, err)

err = proc(&rpcs.EncodedBlockCert{Block: block})
err = proc.Process(&rpcs.EncodedBlockCert{Block: block})
require.NoError(t, err)

//////////
Expand Down Expand Up @@ -1729,7 +1729,7 @@ func TestGetBlockWithCompression(t *testing.T) {
}

func TestNoCompressionSupportForNonBlockAPI(t *testing.T) {
db, shutdownFunc, _, l := setupIdb(t, test.MakeGenesisV2())
db, shutdownFunc, _, l := setupIdb(t, test.MakeGenesis())
defer shutdownFunc()
defer l.Close()

Expand Down

0 comments on commit 4804caf

Please sign in to comment.