Skip to content

Commit f4bc477

Browse files
spazegithub-actions[bot]
authored andcommitted
Fix code styling
1 parent adb33fe commit f4bc477

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/VatCalculatorTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -556,15 +556,15 @@ public function test_postal_codes_without_exceptions_get_standard_rate()
556556
// Invalid post code
557557
$postalCode = 'IGHJ987ERT35';
558558
$result = $vatCalculator->calculate($net, 'ES', $postalCode, false);
559-
//Expect standard rate for Spain
559+
// Expect standard rate for Spain
560560
$this->assertEquals(29.04, $result);
561561
$this->assertEquals(0.21, $vatCalculator->getTaxRate());
562562
$this->assertEquals(5.04, $vatCalculator->getTaxValue());
563563

564564
// Valid BE post code
565565
$postalCode = '2000';
566566
$result = $vatCalculator->calculate($net, 'BE', $postalCode, false);
567-
//Expect standard rate for BE
567+
// Expect standard rate for BE
568568
$this->assertEquals(29.04, $result);
569569
$this->assertEquals(0.21, $vatCalculator->getTaxRate());
570570
$this->assertEquals(5.04, $vatCalculator->getTaxValue());

0 commit comments

Comments
 (0)