Skip to content

Commit

Permalink
Update DB creds used in test
Browse files Browse the repository at this point in the history
  • Loading branch information
DanVanAtta committed Jul 24, 2024
1 parent 7786092 commit 5dd566a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public abstract class DbRiderTestExtension
@Override
public void beforeAll(final ExtensionContext context) {
if (jdbi == null) {
jdbi = Jdbi.create(getDatabaseUrl(), "lobby_flyway", "lobby_flyway");
jdbi = Jdbi.create(getDatabaseUrl(), "lobby_user", "lobby_user");
jdbi.installPlugin(new SqlObjectPlugin());
rowMappers().forEach(jdbi::registerRowMapper);
}
Expand Down

0 comments on commit 5dd566a

Please sign in to comment.