From 257f19857da11ceefd1a1edfa1ea9db54b982b78 Mon Sep 17 00:00:00 2001 From: Carlton N Hanna Date: Wed, 22 May 2024 14:54:39 -0600 Subject: [PATCH] remove testing of deprecated value --- x/marker/keeper/params_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/x/marker/keeper/params_test.go b/x/marker/keeper/params_test.go index 74908558c..a41a7db23 100644 --- a/x/marker/keeper/params_test.go +++ b/x/marker/keeper/params_test.go @@ -38,13 +38,11 @@ func (s *ParamTestSuite) TestGetSetParams() { s.Require().Equal(types.DefaultUnrestrictedDenomRegex, defaultParams.UnrestrictedDenomRegex, "Default UnrestrictedDenomRegex should match") s.Require().Equal(types.StringToBigInt(types.DefaultMaxSupply), defaultParams.MaxSupply, "Default MaxSupply should match") - newMaxTotalSupply := uint64(2000000) newEnableGovernance := false newUnrestrictedDenomRegex := "xyz.*" newMaxSupply := "3000000" newParams := types.Params{ - MaxTotalSupply: newMaxTotalSupply, EnableGovernance: newEnableGovernance, UnrestrictedDenomRegex: newUnrestrictedDenomRegex, MaxSupply: types.StringToBigInt(newMaxSupply), @@ -53,7 +51,6 @@ func (s *ParamTestSuite) TestGetSetParams() { s.app.MarkerKeeper.SetParams(s.ctx, newParams) updatedParams := s.app.MarkerKeeper.GetParams(s.ctx) - s.Require().Equal(newMaxTotalSupply, updatedParams.MaxTotalSupply, "Updated MaxTotalSupply should match") s.Require().Equal(newEnableGovernance, updatedParams.EnableGovernance, "Updated EnableGovernance should match") s.Require().Equal(newUnrestrictedDenomRegex, updatedParams.UnrestrictedDenomRegex, "Updated UnrestrictedDenomRegex should match") s.Require().Equal(types.StringToBigInt(newMaxSupply), updatedParams.MaxSupply, "Updated MaxSupply should match")