Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmuffme committed Sep 8, 2022
1 parent a17fa24 commit 1a10654
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/IntRangeTest.php
Expand Up @@ -687,7 +687,7 @@ function doAnalysis(): void
/** @var string $secret */
$length = strlen($secret);
if ($length > 16) {
throw new exception("");
throw new Exception("");
}
assert($length === 1);
Expand Down
2 changes: 1 addition & 1 deletion tests/MethodCallTest.php
Expand Up @@ -979,7 +979,7 @@ public static function new() : self {
class Datetime extends \DateTime
{
public static function createFromInterface(\DatetimeInterface $datetime): \DateTime
public static function createFromInterface(\DateTimeInterface $datetime): \DateTime
{
return parent::createFromInterface($datetime);
}
Expand Down

0 comments on commit 1a10654

Please sign in to comment.