Skip to content

Commit 9c3a0bb

Browse files
committed
Try to fix test on GitHub Actions runner
1 parent ca6211d commit 9c3a0bb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1563,7 +1563,8 @@ void executeQueryWithExceptionShouldEndTransactionInAutocommit() throws Exceptio
15631563
@Test
15641564
void prepareStatementWithInfoExceeding32K() throws Exception {
15651565
final String owner = "U234567890123456789012345678901";
1566-
databaseUsers.createUser(owner, owner);
1566+
databaseUsers.createUser(owner, owner,
1567+
getDefaultSupportInfo().supportsAuthenticationPlugin("Srp") ? "Srp" : null);
15671568
if (getDefaultSupportInfo().isVersionEqualOrAbove(3, 0)) {
15681569
try (Statement stmt = con.createStatement()) {
15691570
stmt.execute("grant create table to user " + owner);

0 commit comments

Comments
 (0)