diff --git a/x/mint/module_test.go b/x/mint/module_test.go index 448d2f6b0d..8b283b0326 100644 --- a/x/mint/module_test.go +++ b/x/mint/module_test.go @@ -3,13 +3,13 @@ package mint_test import ( "testing" - "github.com/cosmos/cosmos-sdk/x/mint" - "github.com/cosmos/cosmos-sdk/x/supply" - "github.com/stretchr/testify/assert" + "github.com/stretchr/testify/require" "github.com/tendermint/tendermint/abci/types" "github.com/cosmos/cosmos-sdk/simapp" + "github.com/cosmos/cosmos-sdk/x/mint" + "github.com/cosmos/cosmos-sdk/x/supply" ) func TestItCreatesModuleAccountOnInitBlock(t *testing.T) { @@ -24,6 +24,5 @@ func TestItCreatesModuleAccountOnInitBlock(t *testing.T) { ) acc := app.AccountKeeper.GetAccount(ctx, supply.NewModuleAddress(mint.ModuleName)) - - assert.NotNil(t, acc) + require.NotNil(t, acc) }