We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2c458f commit 6b2faa6Copy full SHA for 6b2faa6
1 file changed
packages/wp-mysql-proxy/tests/WP_MySQL_Proxy_PDO_Test.php
@@ -7,7 +7,7 @@ class WP_MySQL_Proxy_PDO_Test extends WP_MySQL_Proxy_Test {
7
public function setUp(): void {
8
parent::setUp();
9
10
- $pdo_class = PHP_VERSION_ID >= 80400 ? PDO\SQLite::class : PDO::class;
+ $pdo_class = PHP_VERSION_ID >= 80400 ? PDO\MySQL::class : PDO::class;
11
$this->pdo = new $pdo_class(
12
sprintf( 'mysql:host=127.0.0.1;port=%d', $this->port ),
13
'user',
0 commit comments