Skip to content

Commit

Permalink
Fix tests after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosas committed Mar 3, 2024
1 parent 596f7ba commit 111b9aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/unit/rules/CanOnlyDepend/CatchBlockTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class CatchBlockTest extends RuleTestCase
public function testRule(): void
{
$this->analyse(['tests/fixtures/FixtureClass.php'], [
[sprintf('%s should not depend on %s', FixtureClass::class, SimpleException::class), 97],
[sprintf('%s should not depend on %s', FixtureClass::class, SimpleException::class), 115],
]);
}

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/rules/ShouldNotDepend/CatchBlockTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class CatchBlockTest extends RuleTestCase
public function testRule(): void
{
$this->analyse(['tests/fixtures/FixtureClass.php'], [
[sprintf('%s should not depend on %s', FixtureClass::class, SimpleException::class), 97],
[sprintf('%s should not depend on %s', FixtureClass::class, SimpleException::class), 115],
]);
}

Expand Down

0 comments on commit 111b9aa

Please sign in to comment.