From 6b263e543a8c79d519129b42bbc5470f3e465d3e Mon Sep 17 00:00:00 2001 From: Sohill-Patel <85170301+Sohill-Patel@users.noreply.github.com> Date: Fri, 1 Dec 2023 10:50:40 +0000 Subject: [PATCH] chore: remove dup step --- core/integration/main_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/integration/main_test.go b/core/integration/main_test.go index af5cc747f1..9074d53b22 100644 --- a/core/integration/main_test.go +++ b/core/integration/main_test.go @@ -491,9 +491,6 @@ func InitializeScenario(s *godog.ScenarioContext) { s.Step(`^the liquidity fee factor should be "([^"]*)" for the market "([^"]*)"$`, func(fee, marketID string) error { return steps.TheLiquidityFeeFactorShouldForTheMarket(execsetup.broker, fee, marketID) }) - s.Step(`^the parties have the following transfer fee discounts`, func(table *godog.Table) error { - return steps.PartiesAvailableFeeDiscounts(execsetup.banking, table) - }) s.Step(`^the market data for the market "([^"]+)" should be:$`, func(marketID string, table *godog.Table) error { return steps.TheMarketDataShouldBe(execsetup.executionEngine, marketID, table) })