Skip to content

Commit

Permalink
Revert "Fix DateTime century test"
Browse files Browse the repository at this point in the history
This reverts commit f1e63e1.
  • Loading branch information
chris-doehring committed Oct 29, 2022
1 parent 92f0d04 commit 525882a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/Faker/Core/DateTimeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,7 @@ public function testCentury()
$century = $this->extension->century();

self::assertIsString($century);
self::assertContains(
$century,
['I', 'II', 'III', 'IV', 'V', 'VI', 'VII', 'VIII', 'IX', 'X', 'XI', 'XII', 'XIII', 'XIV', 'XV', 'XVI', 'XVII', 'XVIII', 'XIX', 'XX', 'XXI']
);
self::assertEquals('XIX', $century);
}

public function testTimezone()
Expand Down

0 comments on commit 525882a

Please sign in to comment.