Skip to content

Commit

Permalink
e2e tests do not use _test database
Browse files Browse the repository at this point in the history
  • Loading branch information
diosmosis committed Nov 27, 2024
1 parent 176126f commit 9536b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e-uninstall/get-matomo-tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 9536b69

Please sign in to comment.