chore: rename integration to e2e (#291)

This commit is contained in:
Alex Johnson
2023-12-12 16:23:15 -08:00
committed by GitHub
parent c09da7733b
commit 7e279c5daa
16 changed files with 68 additions and 60 deletions
+1
View File
@@ -2,6 +2,7 @@ package base
import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/skip-mev/block-sdk/block"
)
+1
View File
@@ -7,6 +7,7 @@ import (
comettypes "github.com/cometbft/cometbft/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/skip-mev/block-sdk/block/utils"
)
+2 -1
View File
@@ -261,7 +261,8 @@ func (_m *Lane) SetMaxBlockSpace(_a0 math.LegacyDec) {
func NewLane(t interface {
mock.TestingT
Cleanup(func())
}) *Lane {
},
) *Lane {
mock := &Lane{}
mock.Mock.Test(t)
+2 -1
View File
@@ -133,7 +133,8 @@ func (_m *LaneMempool) Select(_a0 context.Context, _a1 [][]byte) mempool.Iterato
func NewLaneMempool(t interface {
mock.TestingT
Cleanup(func())
}) *LaneMempool {
},
) *LaneMempool {
mock := &LaneMempool{}
mock.Mock.Test(t)
+2 -1
View File
@@ -8,6 +8,8 @@ import (
"cosmossdk.io/math"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/stretchr/testify/require"
"github.com/skip-mev/block-sdk/block"
"github.com/skip-mev/block-sdk/block/service"
"github.com/skip-mev/block-sdk/block/service/types"
@@ -15,7 +17,6 @@ import (
"github.com/skip-mev/block-sdk/lanes/free"
"github.com/skip-mev/block-sdk/lanes/mev"
"github.com/skip-mev/block-sdk/testutils"
"github.com/stretchr/testify/require"
)
func TestGetTxDistribution(t *testing.T) {
+1
View File
@@ -8,6 +8,7 @@ import (
comettypes "github.com/cometbft/cometbft/types"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkmempool "github.com/cosmos/cosmos-sdk/types/mempool"
signerextraction "github.com/skip-mev/block-sdk/adapters/signer_extraction_adapter"
)