From affba342f0476bc70fe0667c8f4685a2d7ff3581 Mon Sep 17 00:00:00 2001 From: Jacob Cain Date: Wed, 18 Dec 2024 10:54:30 -0500 Subject: [PATCH] fix failing test --- test/responses/quotation_fallback_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/responses/quotation_fallback_test.rb b/test/responses/quotation_fallback_test.rb index fd80865..e4cfd76 100644 --- a/test/responses/quotation_fallback_test.rb +++ b/test/responses/quotation_fallback_test.rb @@ -61,7 +61,7 @@ let(:payload) { VertexClient::Payload::QuotationFallback.new(working_eu_quote_params) } it 'is the sum of total_tax from line_items' do - assert_equal 12.54, response.total_tax.to_f + assert_equal 0.0, response.total_tax.to_f end end