diff --git a/tests/integration/connect_setup.go b/tests/integration/connect_setup.go index 99f1ee0df..225acb6cc 100644 --- a/tests/integration/connect_setup.go +++ b/tests/integration/connect_setup.go @@ -387,7 +387,8 @@ func PassProposal(chain *cosmos.CosmosChain, propId string, timeout time.Duratio // AddCurrencyPairs creates + submits the proposal to add the given currency-pairs to state, votes for the prop w/ all nodes, // and waits for the proposal to pass. func (s *ConnectIntegrationSuite) AddCurrencyPairs(chain *cosmos.CosmosChain, user cosmos.User, price float64, - tickers ...mmtypes.Ticker) error { + tickers ...mmtypes.Ticker, +) error { creates := make([]mmtypes.Market, len(tickers)) for i, ticker := range tickers { creates[i] = mmtypes.Market{ @@ -426,7 +427,8 @@ func (s *ConnectIntegrationSuite) AddCurrencyPairs(chain *cosmos.CosmosChain, us } func (s *ConnectIntegrationSuite) RemoveMarket(chain *cosmos.CosmosChain, user cosmos.User, - markets []connecttypes.CurrencyPair) error { + markets []connecttypes.CurrencyPair, +) error { marketString := make([]string, len(markets)) for i, market := range markets { marketString[i] = market.String() diff --git a/tests/integration/connect_suite.go b/tests/integration/connect_suite.go index f9b86007a..390e8e408 100644 --- a/tests/integration/connect_suite.go +++ b/tests/integration/connect_suite.go @@ -399,7 +399,6 @@ func (s *ConnectOracleIntegrationSuite) TestOracleModule() { _, err = QueryMarket(s.chain, disabledCP) s.Require().Error(err) }) - } func translateGRPCAddr(chain *cosmos.CosmosChain) string { @@ -799,7 +798,6 @@ func (s *ConnectOracleIntegrationSuite) TestMultiplePriceFeeds() { s.Require().Equal(int64(110000000), resp.Price.Int64()) } }) - } func getIDForCurrencyPair(ctx context.Context, client oracletypes.QueryClient, cp connecttypes.CurrencyPair) (uint64, error) {