Skip to content

Commit

Permalink
Use equal to instead of equal of in assertSqlGeneration()
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod committed Nov 20, 2021
1 parent 9a74ae6 commit 57aefa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Doctrine/Tests/ORM/Query/SelectSqlGenerationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function assertSqlGeneration(
parent::assertEquals(
$sqlToBeConfirmed,
$sqlGenerated,
sprintf('"%s" is not equal of "%s"', $sqlGenerated, $sqlToBeConfirmed)
sprintf('"%s" is not equal to "%s"', $sqlGenerated, $sqlToBeConfirmed)
);

$query->free();
Expand Down

0 comments on commit 57aefa1

Please sign in to comment.