Skip to content

Commit

Permalink
Add tests for fail boolean type.
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Oct 24, 2023
1 parent bd3e290 commit f477281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ColumnSchemaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function testPhpTypeCast(): void
$this->assertSame(1.234, $floatColPhpType);
$this->assertSame("\x10\x11\x12", $blobColPhpType);
$this->assertSame('2023-07-11 14:50:00.123', $datetimeColPhpType);
$this->assertEquals(false, $boolColPhpType);
$this->assertFalse($boolColPhpType);

$db->close();
}
Expand Down

0 comments on commit f477281

Please sign in to comment.