From ce8fc061ed442907c98f84260993b19b2463f198 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Thu, 25 May 2023 12:07:00 +1000 Subject: [PATCH] Fixes for tests --- tests/Unit/Tax/SumTaxTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/Tax/SumTaxTest.php b/tests/Unit/Tax/SumTaxTest.php index c57add9afa..b30b3d1ca8 100644 --- a/tests/Unit/Tax/SumTaxTest.php +++ b/tests/Unit/Tax/SumTaxTest.php @@ -200,7 +200,7 @@ class SumTaxTest extends TestCase $line_items = $invoice->line_items; $this->assertEquals(10.88, $invoice->amount); - $this->assertEquals("CA Sales Tax", $line_items[0]->tax_name1); + $this->assertEquals("Sales Tax", $line_items[0]->tax_name1); $this->assertEquals(8.75, $line_items[0]->tax_rate1); }