tests are working again

This commit is contained in:
Joby 2020-06-23 16:00:20 -06:00
parent 5b8d557f19
commit 62102fbf9f
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ services:
- mysql - mysql
php: php:
- 7.3 - 7.3
# - 7.4 - 7.4
before_install: before_install:
- mysql -e 'CREATE DATABASE test' - mysql -e 'CREATE DATABASE test'
install: install:

View file

@ -10,7 +10,7 @@ use Destructr\Drivers\MySQLDriver;
class MySQLDriverTest extends AbstractDriverTest class MySQLDriverTest extends AbstractDriverTest
{ {
const DRIVER_CLASS = MySQLDriver::class; const DRIVER_CLASS = MySQLDriver::class;
const DRIVER_DSN = 'mysql:host=127.0.0.1;dbname=tes'; const DRIVER_DSN = 'mysql:host=127.0.0.1;dbname=test';
const DRIVER_USERNAME = 'root'; const DRIVER_USERNAME = 'root';
const DRIVER_PASSWORD = ''; const DRIVER_PASSWORD = '';
const DRIVER_OPTIONS = null; const DRIVER_OPTIONS = null;