From f4772813bc897ab495a5ceb629bf7d28f1d0bb1c Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Tue, 24 Oct 2023 20:52:35 -0300 Subject: [PATCH] Add tests for fail boolean type. --- tests/ColumnSchemaTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ColumnSchemaTest.php b/tests/ColumnSchemaTest.php index f7ef59a6..9642c05a 100644 --- a/tests/ColumnSchemaTest.php +++ b/tests/ColumnSchemaTest.php @@ -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(); }