Skip to content

Commit

Permalink
Merge pull request #565 from iLexN/dependabot/composer/rector/rector-…
Browse files Browse the repository at this point in the history
…1.2.10

Update rector/rector requirement from 1.2.8 to 1.2.10
  • Loading branch information
iLexN authored Nov 25, 2024
2 parents d7b2d19 + 5e03068 commit 56185dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"phpstan/phpstan-phpunit": "^1.4",
"phpstan/phpstan-strict-rules": "^1.6",
"phpunit/phpunit": "10.5.26",
"rector/rector": "1.2.8",
"rector/rector": "1.2.10",
"spatie/phpunit-watcher": "^1.23",
"symplify/easy-coding-standard": "^12.3.6",
"vimeo/psalm": "^5.26"
Expand Down
6 changes: 3 additions & 3 deletions tests/HkidTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function testCheckPartsHkidFormatTrue(
$a = Helper::checkByParts($p1, $p2, $p3);

$this->assertTrue($a->isValid());
$this->assertEquals(Reason::Ok, $a->getReason());
$this->assertSame(Reason::Ok, $a->getReason());
$this->assertFalse($a->isDigitError());
$this->assertFalse($a->isPattenError());

Expand Down Expand Up @@ -57,7 +57,7 @@ public function testCheckStringHkidFormatHelperTrue(
$c = Helper::checkByString($this->partsToString($p1, $p2, $p3));

$this->assertTrue($c->isValid());
$this->assertEquals(Reason::Ok, $c->getReason());
$this->assertSame(Reason::Ok, $c->getReason());
$this->assertFalse($c->isDigitError());
$this->assertFalse($c->isPattenError());

Expand Down Expand Up @@ -85,7 +85,7 @@ public function testCheckHkidFormatMainTrue(
$b = new HkidDigitCheck();
$r = $b->checkParts($p1, $p2, $p3);
$this->assertTrue($r->isValid());
$this->assertEquals(Reason::Ok, $r->getReason());
$this->assertSame(Reason::Ok, $r->getReason());
$this->assertFalse($r->isDigitError());
$this->assertFalse($r->isPattenError());

Expand Down

0 comments on commit 56185dc

Please sign in to comment.