We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dbcc79 commit cf54822Copy full SHA for cf54822
1 file changed
pgjdbc/src/test/java/org/postgresql/jdbc/ScramTest.java
@@ -14,6 +14,7 @@
14
import org.postgresql.PGProperty;
15
import org.postgresql.core.ServerVersion;
16
import org.postgresql.test.TestUtil;
17
+import org.postgresql.test.annotations.EnabledForServerVersionRange;
18
import org.postgresql.util.PSQLException;
19
import org.postgresql.util.PSQLState;
20
@@ -179,6 +180,7 @@ void rejectValidCredentialsAboveCustomCap() throws SQLException {
179
180
}
181
182
@Test
183
+ @EnabledForServerVersionRange(gte = "16")
184
void acceptsValidCredentialsBelowCustomCap() throws SQLException {
185
int serverScramIterations = Integer.parseInt(TestUtil.queryForString(con, "SHOW scram_iterations"));
186
String password = "t0pSecret";
0 commit comments