Skip to content

Commit

Permalink
[misc] skysql2 test stability correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed May 31, 2023
1 parent 01aeb14 commit c8c3b88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/test-debug.js
Expand Up @@ -306,7 +306,7 @@ describe('debug', () => {
setTimeout(() => {
const data = fs.readFileSync(tmpLogFile, 'utf8');
const serverVersion = conn.serverVersion();
const range = [6500, 8400 + (Conf.baseConfig.ssl ? 250 : 0)];
const range = [6500, 9000 + (Conf.baseConfig.ssl ? 800 : 0)];
assert(
data.length > range[0] && data.length < range[1],
'wrong data length : ' +
Expand Down

0 comments on commit c8c3b88

Please sign in to comment.