Skip to content

Commit 79fb276

Browse files
committed
Explicitly specify the plugin to fix test failure on GitHub Action
1 parent 9fecfbe commit 79fb276

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/org/firebirdsql/jdbc/CreateDatabaseIfNotExistTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ void createDatabaseIfNotExist() throws Exception {
8989
@Test
9090
void createWithNonPrivilegedUser_shouldFail() throws Exception {
9191
assumeFeature(FirebirdSupportInfo::supportsMetadataPrivileges, "Test requires CREATE DATABASE privileges");
92-
databaseUser.createUser(NO_CREATE_DB_PRIVILEGE_USER, NO_CREATE_DB_PRIVILEGE_PASSWORD);
92+
databaseUser.createUser(NO_CREATE_DB_PRIVILEGE_USER, NO_CREATE_DB_PRIVILEGE_PASSWORD, "Srp");
9393
var exception = assertThrows(SQLException.class, () ->
9494
getConnection(Map.of(
9595
PropertyNames.user, NO_CREATE_DB_PRIVILEGE_USER,
@@ -100,7 +100,7 @@ void createWithNonPrivilegedUser_shouldFail() throws Exception {
100100

101101
@Test
102102
void createOverrideNonPrivilegedUserWithPrivilegedUser() throws Exception {
103-
databaseUser.createUser(NO_CREATE_DB_PRIVILEGE_USER, NO_CREATE_DB_PRIVILEGE_PASSWORD);
103+
databaseUser.createUser(NO_CREATE_DB_PRIVILEGE_USER, NO_CREATE_DB_PRIVILEGE_PASSWORD, "Srp");
104104
try (var connection = getConnection(Map.of(
105105
PropertyNames.user, NO_CREATE_DB_PRIVILEGE_USER,
106106
PropertyNames.password, NO_CREATE_DB_PRIVILEGE_PASSWORD,

0 commit comments

Comments
 (0)