We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0191ac0 commit acba551Copy full SHA for acba551
test/unit/bugs/bugs.cpp
@@ -1182,12 +1182,12 @@ void bugs::bug32695580()
1182
logMsg("bugs::bug32695580");
1183
sql::ConnectOptionsMap opt;
1184
opt[OPT_HOSTNAME] = "127.0.0.1";
1185
- opt[OPT_PORT] = 111;
+ opt[OPT_PORT] = 65000;
1186
1187
try {
1188
Connection con2(getConnection(&opt));
1189
} catch (const sql::SQLException &e) {
1190
- ASSERT_EQUALS(2003,e.getErrorCode());
+ ASSERT_GT(2000,e.getErrorCode());
1191
}
1192
1193
0 commit comments