Skip to content

Commit

Permalink
fixup! fixup! fixup! Try testing boolean comparison using ParameterType
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed Sep 24, 2024
1 parent 0656330 commit d4541e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Functional/Query/QueryBuilderBoolTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ protected function setUp(): void

$this->dropAndCreateTable($table);

$this->connection->insert('for_update', ['id' => 1, 'b1' => true]);
$this->connection->insert('for_update', ['id' => 2, 'b1' => false]);
$this->connection->insert('for_update', ['id' => 1, 'b1' => 1]);
$this->connection->insert('for_update', ['id' => 2, 'b1' => 0]);
}

protected function tearDown(): void
Expand Down

0 comments on commit d4541e4

Please sign in to comment.