From 2ead4f31c6b64abe8535737ee4919f72ecb55a68 Mon Sep 17 00:00:00 2001 From: Wilmer Arambula Date: Sat, 18 May 2024 17:01:35 -0400 Subject: [PATCH] Fixed tests. --- tests/framework/db/SchemaTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/framework/db/SchemaTest.php b/tests/framework/db/SchemaTest.php index fcc3036d8a1..4dfa40b915c 100644 --- a/tests/framework/db/SchemaTest.php +++ b/tests/framework/db/SchemaTest.php @@ -774,6 +774,7 @@ public function testTableSchemaConstraints($tableName, $type, $expected) } if ( + $this->driverName === 'mysql' && version_compare($this->getConnection(false)->getServerVersion(), '8.0.16', '<') && $type === 'checks' ) { @@ -797,6 +798,7 @@ public function testTableSchemaConstraintsWithPdoUppercase($tableName, $type, $e } if ( + $this->driverName === 'mysql' && version_compare($this->getConnection(false)->getServerVersion(), '8.0.16', '<') && $type === 'checks' ) { @@ -822,6 +824,7 @@ public function testTableSchemaConstraintsWithPdoLowercase($tableName, $type, $e } if ( + $this->driverName === 'mysql' && version_compare($this->getConnection(false)->getServerVersion(), '8.0.16', '<') && $type === 'checks' ) {