Skip to content

Commit

Permalink
tests: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Jul 22, 2017
1 parent e9f29d5 commit dbbc310
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/cases/integration/connection.mysqli.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ConnectionMysqlTest extends IntegrationTestCase
Assert::true($this->connection->getDriver()->isConnected());
$oldDriver = $this->connection->getDriver();

$config['driver'] = new MysqliDriver($config);
$config['driver'] = new MysqliDriver();
$this->connection->reconnectWithConfig($config);

$newDriver = $this->connection->getDriver();
Expand Down
2 changes: 1 addition & 1 deletion tests/cases/integration/connection.pgsql.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ConnectionPgsqlTest extends IntegrationTestCase
Assert::true($this->connection->getDriver()->isConnected());
$oldDriver = $this->connection->getDriver();

$config['driver'] = new PgsqlDriver($config);
$config['driver'] = new PgsqlDriver();
$this->connection->reconnectWithConfig($config);

$newDriver = $this->connection->getDriver();
Expand Down

0 comments on commit dbbc310

Please sign in to comment.