File tree 2 files changed +3
-3
lines changed
src/test/java/org/mariadb/jdbc
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ install:
33
33
connector-test-machine/launch.bat -t "$srv" -v "$v" -d testj
34
34
;;
35
35
linux)
36
- source connector-test-machine/launch.sh -t "$srv" -v "$v" -d testj -n 0 - l "$local" -p "$packet"
36
+ source connector-test-machine/launch.sh -t "$srv" -v "$v" -d testj -l "$local" -p "$packet"
37
37
;;
38
38
esac
39
39
Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ public void sha256PluginTestWithServerRsaKey() throws SQLException {
89
89
public void sha256PluginTestWithoutServerRsaKey () throws SQLException {
90
90
Assume .assumeTrue (!Platform .isWindows () && minVersion (8 , 0 , 0 ));
91
91
// mysql 8.0.31 broken public key retrieval, so avoid FLUSHING for now
92
- Assume .assumeTrue (!isMariadbServer () && !exactVersion (8 , 0 , 31 ));
92
+ Assume .assumeTrue (!isMariadbServer () && !minVersion (8 , 0 , 31 ));
93
93
94
94
try (Connection conn =
95
95
DriverManager .getConnection (
@@ -172,7 +172,7 @@ public void cachingSha256PluginTestWithServerRsaKey() throws SQLException {
172
172
public void cachingSha256PluginTestWithoutServerRsaKey () throws SQLException {
173
173
Assume .assumeTrue (minVersion (8 , 0 , 0 ));
174
174
// mysql 8.0.31 broken public key retrieval, so avoid FLUSHING for now
175
- Assume .assumeTrue (!isMariadbServer () && !exactVersion (8 , 0 , 31 ));
175
+ Assume .assumeTrue (!isMariadbServer () && !minVersion (8 , 0 , 31 ));
176
176
177
177
try (Connection conn =
178
178
DriverManager .getConnection (
You can’t perform that action at this time.
0 commit comments