Skip to content

Commit

Permalink
Use 127.0.0.1 instead of localhost in DatabaseAccounts
Browse files Browse the repository at this point in the history
localhost doesn't work with MySQL for some reason
  • Loading branch information
mstilkerich committed May 18, 2022
1 parent ebc529b commit 4e4bd23
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/dbinterop/DatabaseAccounts.php.dist
Expand Up @@ -16,12 +16,12 @@ final class DatabaseAccounts
"sqlite:///" . __DIR__ . "/../../testreports/migtest.db?mode=0640",
],
"postgres" => [
"pgsql://postgres:postgres@localhost/rcmcarddavtest",
"pgsql://postgres:postgres@localhost/rcmcarddavmigtest",
"pgsql://postgres:postgres@127.0.0.1/rcmcarddavtest",
"pgsql://postgres:postgres@127.0.0.1/rcmcarddavmigtest",
],
"mysql" => [
"mysql://root:root@localhost/rcmcarddavtest",
"mysql://root:root@localhost/rcmcarddavmigtest",
"mysql://root:root@127.0.0.1/rcmcarddavtest",
"mysql://root:root@127.0.0.1/rcmcarddavmigtest",
],
];
}
Expand Down

0 comments on commit 4e4bd23

Please sign in to comment.