Skip to content

Commit

Permalink
chore: fix some typos in comments (#51037)
Browse files Browse the repository at this point in the history
Signed-off-by: laterlaugh <[email protected]>
  • Loading branch information
laterlaugh authored Apr 12, 2024
1 parent d08a9b0 commit b8028ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Database/DatabaseTransactionsManagerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ public function testCommittingTransactions()
$executedAdminTransactions = $manager->commit('admin', 2, 1);

$this->assertCount(1, $manager->getPendingTransactions()); // One pending "admin" transaction left...
$this->assertCount(2, $executedTransactions); // Two committed tranasctions on "default"
$this->assertCount(0, $executedAdminTransactions); // Zero executed committed tranasctions on "default"
$this->assertCount(2, $executedTransactions); // Two committed transactions on "default"
$this->assertCount(0, $executedAdminTransactions); // Zero executed committed transactions on "default"

// Level 2 "admin" callback has been staged...
$this->assertSame('admin', $manager->getCommittedTransactions()[0]->connection);
Expand Down

0 comments on commit b8028ce

Please sign in to comment.