From 9a70e2fbbd4608f62361787e05b5234258e3c952 Mon Sep 17 00:00:00 2001 From: Mitchell Henke Date: Thu, 28 Apr 2022 07:25:59 -0500 Subject: [PATCH] Remove unused test helper [skip changelog] --- spec/features/sp_cost_tracking_spec.rb | 7 ------- 1 file changed, 7 deletions(-) diff --git a/spec/features/sp_cost_tracking_spec.rb b/spec/features/sp_cost_tracking_spec.rb index 7c1451f43ad..410f5b4abc2 100644 --- a/spec/features/sp_cost_tracking_spec.rb +++ b/spec/features/sp_cost_tracking_spec.rb @@ -74,13 +74,6 @@ def expect_sp_cost_type(sp_cost_index, ial, token, transaction_id: nil) expect(sp_cost.transaction_id).to(eq(transaction_id)) if transaction_id end - def expect_direct_cost_type(sp_cost_index, token) - sp_cost = sp_costs(sp_cost_index) - expect(sp_cost.issuer).to eq('') - expect(sp_cost.agency_id).to eq(0) - expect(sp_cost.cost_type).to eq(token) - end - def sp_costs(index) SpCost.order('id asc')[index] end