Skip to content

Commit 9853961

Browse files
committed
test(spain): fix murciaDay minimum year in RegionOfMurcia test
The `generateRandomYear(1981)` function could produce years before 1983, but `murciaDay` is only added from 1983 (first celebration). Signed-off-by: Sacha Telgenhof <me@sachatelgenhof.com>
1 parent b168676 commit 9853961

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/Spain/RegionOfMurcia/RegionOfMurciaTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class RegionOfMurciaTest extends RegionOfMurciaBaseTestCase implements ProviderT
3737
*/
3838
protected function setUp(): void
3939
{
40-
$this->year = static::generateRandomYear(1981);
40+
$this->year = static::generateRandomYear(1983);
4141
}
4242

4343
/**

0 commit comments

Comments
 (0)