Skip to content

Commit

Permalink
Removed stripes from testing format
Browse files Browse the repository at this point in the history
  • Loading branch information
rubentebogt committed Sep 24, 2024
1 parent 37332d5 commit 7b31eef
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/vendor
/composer.lock
/.phpunit.result.cache
/.phpunit.result.cache
6 changes: 2 additions & 4 deletions tests/Formatter/ATFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ public function providerFormat() : array
['ABCDE', null],
['ABCDEF', null],

['A-8084', '8084'],
['a-8084', '8084'],
['X-8084', null],
['x-8084', null],
['A8084', '8084'],
['X8084', null],
];
}
}
6 changes: 2 additions & 4 deletions tests/Formatter/BEFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,8 @@ public function providerFormat() : array
['ABCDE', null],
['ABCDEF', null],

['B-8084', '8084'],
['b-8084', '8084'],
['X-8084', null],
['x-8084', null],
['B8084', '8084'],
['X8084', null],
];
}
}
7 changes: 2 additions & 5 deletions tests/Formatter/LUFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,8 @@ public function providerFormat() : array
['ABCD', null],
['ABCDE', null],


['L-8084', '8084'],
['l-8084', '8084'],
['X-8084', null],
['x-8084', null],
['L8084', '8084'],
['X8084', null],
];
}
}
2 changes: 1 addition & 1 deletion tests/PostcodeFormatterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,4 +106,4 @@ public function providerIsSupportedCountry() : array
['UnknownCountry', false],
];
}
}
}

0 comments on commit 7b31eef

Please sign in to comment.