Skip to content

Commit

Permalink
est, bugfix: smaller time range for websocket use cases causes test f…
Browse files Browse the repository at this point in the history
…ailure on slow computers.
  • Loading branch information
xicilion committed Apr 28, 2019
1 parent 7fbfa1f commit f2ebb2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ws_test.js
Expand Up @@ -681,7 +681,7 @@ describe('ws', () => {
console.error(e);
};

for (var i = 0; i < 1000 && cnt < 1025; i++)
for (var i = 0; i < 10000 && cnt < 1025; i++)
coroutine.sleep(1);

s.close();
Expand Down

0 comments on commit f2ebb2d

Please sign in to comment.