From 9536b69e8d38d582f9483ad5c36cfb80071ba321 Mon Sep 17 00:00:00 2001 From: diosmosis Date: Wed, 27 Nov 2024 05:49:05 -0800 Subject: [PATCH] e2e tests do not use _test database --- tests/e2e-uninstall/get-matomo-tables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/e2e-uninstall/get-matomo-tables.php b/tests/e2e-uninstall/get-matomo-tables.php index 17ac666c3..2a1a26660 100644 --- a/tests/e2e-uninstall/get-matomo-tables.php +++ b/tests/e2e-uninstall/get-matomo-tables.php @@ -19,7 +19,7 @@ exit; } -$pdo = new \PDO( "mysql:host=$host;dbname={$dbname}_test", 'root', 'pass' ); +$pdo = new \PDO( "mysql:host=$host;dbname={$dbname}", 'root', 'pass' ); $query = $pdo->prepare( 'SHOW TABLES' ); $query->execute();