tests are working again
This commit is contained in:
parent
5b8d557f19
commit
62102fbf9f
2 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue