From 78705bf796fcf05442acb9040f647299ac0e9150 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Thu, 12 Dec 2019 09:33:32 -0500 Subject: [PATCH] Fix mysql test on travis ci --- tests/Drivers/MySQL/MySQLDriverTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Drivers/MySQL/MySQLDriverTest.php b/tests/Drivers/MySQL/MySQLDriverTest.php index 5a834b6..b04c7f1 100644 --- a/tests/Drivers/MySQL/MySQLDriverTest.php +++ b/tests/Drivers/MySQL/MySQLDriverTest.php @@ -177,7 +177,7 @@ SQL; public function testGetSchemas(): void { - $this->assertEqual(['test'], self::$db->getSchemas()); + $this->assertTrue(in_array('test', self::$db->getSchemas())); } public function testGetSequences(): void