diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-28 11:56:40 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-28 11:56:40 +0200 |
commit | 2e1378558a0a9261410d07dbacd67205e0f568a2 (patch) | |
tree | f6ac76a2f10a380f91e950ed5e339a75cb87124f /js | |
parent | Fixed ICE-8166 and ICE-8171 - increased 100ms connection timeouts to 250ms, a... (diff) | |
download | ice-2e1378558a0a9261410d07dbacd67205e0f568a2.tar.bz2 ice-2e1378558a0a9261410d07dbacd67205e0f568a2.tar.xz ice-2e1378558a0a9261410d07dbacd67205e0f568a2.zip |
Increased sequence size to 10MB for JS connection timeout test
Diffstat (limited to 'js')
-rw-r--r-- | js/test/Ice/timeout/Client.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/js/test/Ice/timeout/Client.js b/js/test/Ice/timeout/Client.js index 0b0ee44658f..66681631a8c 100644 --- a/js/test/Ice/timeout/Client.js +++ b/js/test/Ice/timeout/Client.js @@ -104,7 +104,7 @@ } ).then(() => { - seq = new Uint8Array(1000000); + seq = new Uint8Array(10000000); return timeout.holdAdapter(1500 * mult); } ).then(() => to.sendData(seq) // Expect TimeoutException @@ -218,7 +218,6 @@ } ).then(c => { - seq = new Uint8Array(10000000); return timeout.holdAdapter(750 * 2 * mult); } ).then(() => to.sendData(seq) // Expect TimeoutException. |