Skip to content

Commit

Permalink
Fix code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
spaze authored and github-actions[bot] committed Jan 1, 2025
1 parent adb33fe commit f4bc477
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/VatCalculatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -556,15 +556,15 @@ public function test_postal_codes_without_exceptions_get_standard_rate()
// Invalid post code
$postalCode = 'IGHJ987ERT35';
$result = $vatCalculator->calculate($net, 'ES', $postalCode, false);
//Expect standard rate for Spain
// Expect standard rate for Spain
$this->assertEquals(29.04, $result);
$this->assertEquals(0.21, $vatCalculator->getTaxRate());
$this->assertEquals(5.04, $vatCalculator->getTaxValue());

// Valid BE post code
$postalCode = '2000';
$result = $vatCalculator->calculate($net, 'BE', $postalCode, false);
//Expect standard rate for BE
// Expect standard rate for BE
$this->assertEquals(29.04, $result);
$this->assertEquals(0.21, $vatCalculator->getTaxRate());
$this->assertEquals(5.04, $vatCalculator->getTaxValue());
Expand Down

0 comments on commit f4bc477

Please sign in to comment.