diff --git a/store/streaming/constructor_test.go b/store/streaming/constructor_test.go index 5edaeccd4eac..a7d6b83489a1 100644 --- a/store/streaming/constructor_test.go +++ b/store/streaming/constructor_test.go @@ -7,12 +7,13 @@ import ( "github.com/cosmos/cosmos-sdk/codec" codecTypes "github.com/cosmos/cosmos-sdk/codec/types" serverTypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp" "github.com/cosmos/cosmos-sdk/store/streaming" "github.com/cosmos/cosmos-sdk/store/streaming/file" "github.com/cosmos/cosmos-sdk/store/types" simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/cosmos/cosmos-sdk/types/module/testutil" + "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" @@ -51,7 +52,7 @@ func TestStreamingServiceConstructor(t *testing.T) { func TestLoadStreamingServices(t *testing.T) { db := dbm.NewMemDB() - encCdc := simapp.MakeTestEncodingConfig() + encCdc := testutil.MakeTestEncodingConfig() keys := sdk.NewKVStoreKeys("mockKey1", "mockKey2") bApp := baseapp.NewBaseApp("appName", log.NewNopLogger(), db, nil)