diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-03-20 11:17:59 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-03-20 11:17:59 +0100 |
commit | b82290353c30fb37817867b60c86a07539d5a262 (patch) | |
tree | f2a98fc54002fcda9faeb857a82475558b809f47 /js/test/Ice/timeout/Client.js | |
parent | Removed unecessary chmod after calling install with -m 644 (diff) | |
download | ice-b82290353c30fb37817867b60c86a07539d5a262.tar.bz2 ice-b82290353c30fb37817867b60c86a07539d5a262.tar.xz ice-b82290353c30fb37817867b60c86a07539d5a262.zip |
Fixed JavaScript close timeout bug (ICE-8747)
Diffstat (limited to 'js/test/Ice/timeout/Client.js')
-rw-r--r-- | js/test/Ice/timeout/Client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/test/Ice/timeout/Client.js b/js/test/Ice/timeout/Client.js index 09ef95d9d16..4c1bab75b6f 100644 --- a/js/test/Ice/timeout/Client.js +++ b/js/test/Ice/timeout/Client.js @@ -344,7 +344,7 @@ let start = Date.now(); await comm.destroy(); let end = Date.now(); - test(end - start < 700); + test(end - start < 1000); await controller.resumeAdapter(); out.writeLine("ok"); await controller.shutdown(); |