Skip to content

Commit

Permalink
update phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
gharlan committed Dec 2, 2021
1 parent 5f4ba3d commit 4787e85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.php_cs.cache
.phpunit.result.cache
composer.lock
vendor
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
},

"require-dev": {
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^9.5"
}
}
2 changes: 1 addition & 1 deletion tests/Holidays/Preset/GermanyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function testGetHolidays(): void
];

foreach ($dates as [$month, $day]) {
self::assertContains(Date::create(2017, $month, $day), $holidays, '', false, false);
self::assertContainsEquals(Date::create(2017, $month, $day), $holidays);
}
}

Expand Down

0 comments on commit 4787e85

Please sign in to comment.