File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/org/firebirdsql/jdbc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ void createDatabaseIfNotExist() throws Exception {
89
89
@ Test
90
90
void createWithNonPrivilegedUser_shouldFail () throws Exception {
91
91
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" );
93
93
var exception = assertThrows (SQLException .class , () ->
94
94
getConnection (Map .of (
95
95
PropertyNames .user , NO_CREATE_DB_PRIVILEGE_USER ,
@@ -100,7 +100,7 @@ void createWithNonPrivilegedUser_shouldFail() throws Exception {
100
100
101
101
@ Test
102
102
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" );
104
104
try (var connection = getConnection (Map .of (
105
105
PropertyNames .user , NO_CREATE_DB_PRIVILEGE_USER ,
106
106
PropertyNames .password , NO_CREATE_DB_PRIVILEGE_PASSWORD ,
You can’t perform that action at this time.
0 commit comments