Skip to content

Commit

Permalink
fix test for first second of 2021
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvankooten committed Dec 17, 2020
1 parent dc1012b commit 97c9fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/CountriesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public function testIsCodeInEU()

// test for Brexit
$now = new DateTime('now');
$y2021 = new DateTime('2021-01-01 00:00:00');
$y2021 = new DateTime('2020-12-31 23:59:59');
if ($now > $y2021) {
$this->assertFalse($countries->isCountryCodeInEU('GB'));
} else {
Expand Down

0 comments on commit 97c9fb5

Please sign in to comment.