From 09e0c80c51a1a0a475094452f790cdda88dd588d Mon Sep 17 00:00:00 2001 From: Amolith Date: Wed, 28 May 2025 14:03:26 -0600 Subject: [PATCH] test(credit-card-sale): add missing openstruct require Not entirely sure what was changed, but the test started failing until I added the missing require. --- test/test_credit_card_sale.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_credit_card_sale.rb b/test/test_credit_card_sale.rb index deded1504864f8b11fac0c7405bfbe6970c4a0bc..2d460da513e4c39af7c23f5edc2776ec4c8462f8 100644 --- a/test/test_credit_card_sale.rb +++ b/test/test_credit_card_sale.rb @@ -4,6 +4,7 @@ require "test_helper" require "credit_card_sale" require "customer" require "transaction" +require "ostruct" CreditCardSale::BRAINTREE = Minitest::Mock.new CreditCardSale::REDIS = Minitest::Mock.new