From cca46e0ec4e4ad2b1b20fed7b3ea04a813659fbc Mon Sep 17 00:00:00 2001 From: Mike Mozhaev Date: Sat, 23 Nov 2024 20:25:42 +0200 Subject: [PATCH] Update x/tokenfactory/keeper/before_send_test.go Co-authored-by: swelf19 <62722506+swelf19@users.noreply.github.com> --- x/tokenfactory/keeper/before_send_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/tokenfactory/keeper/before_send_test.go b/x/tokenfactory/keeper/before_send_test.go index 30dfc9160..3887ccabb 100644 --- a/x/tokenfactory/keeper/before_send_test.go +++ b/x/tokenfactory/keeper/before_send_test.go @@ -330,7 +330,7 @@ func (suite *KeeperTestSuite) TestInfiniteTrackBeforeSend() { suite.Require().NoError(err) // send should happen regardless of trackBeforeSend results - distributionModuleAddress := suite.GetNeutronZoneApp(suite.ChainA).AccountKeeper.GetModuleAddress("dex") + distributionModuleAddress := suite.GetNeutronZoneApp(suite.ChainA).AccountKeeper.GetModuleAddress(dextypes.ModuleName) distributionModuleBalances := suite.GetNeutronZoneApp(suite.ChainA).BankKeeper.GetAllBalances(suite.ChainA.GetContext(), distributionModuleAddress) suite.Require().True(distributionModuleBalances.Equal(tokenToSend)) }