From ca3fdefc43a22567a58af7cffbf776f6ba496978 Mon Sep 17 00:00:00 2001 From: Till Ziegler Date: Wed, 6 Mar 2024 19:25:21 +0100 Subject: [PATCH] lint: min_initial_deposit_test.go --- custom/auth/ante/min_initial_deposit_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/custom/auth/ante/min_initial_deposit_test.go b/custom/auth/ante/min_initial_deposit_test.go index dfd743afd..d5cfb927f 100644 --- a/custom/auth/ante/min_initial_deposit_test.go +++ b/custom/auth/ante/min_initial_deposit_test.go @@ -133,7 +133,6 @@ func (suite *AnteTestSuite) TestMinInitialDepositRatioWithSufficientDeposit() { // ante handler should not error for v1 proposal _, err = antehandler(suite.ctx, txv1, false) suite.Require().NoError(err, "error: v1 proposal with sufficient initial deposit should have gone through") - } func (suite *AnteTestSuite) TestMinInitialDepositRatioWithInsufficientDeposit() { @@ -191,5 +190,4 @@ func (suite *AnteTestSuite) TestMinInitialDepositRatioWithInsufficientDeposit() // ante handler should not error for v1 proposal _, err = antehandler(suite.ctx, txv1, false) suite.Require().Error(err, "error: v1 proposal with insufficient initial deposit should have failed") - }