diff options
author | Benoit Foucher <benoit@zeroc.com> | 2014-11-18 16:55:42 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2014-11-18 16:55:42 +0100 |
commit | 01d5859a84cce5ad552bac8ec465ee2de0f84d76 (patch) | |
tree | c3574f644bf01447592814c5267e9e32d7c40d15 /js/test | |
parent | Fixed distribution script to include makecerts.py, minor makecerts.py fix (diff) | |
download | ice-01d5859a84cce5ad552bac8ec465ee2de0f84d76.tar.bz2 ice-01d5859a84cce5ad552bac8ec465ee2de0f84d76.tar.xz ice-01d5859a84cce5ad552bac8ec465ee2de0f84d76.zip |
Fixed ICE-5918: batch oneway test hang
Diffstat (limited to 'js/test')
-rw-r--r-- | js/test/Ice/operations/BatchOneways.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/test/Ice/operations/BatchOneways.js b/js/test/Ice/operations/BatchOneways.js index 7994e7398c1..551e8a97c0a 100644 --- a/js/test/Ice/operations/BatchOneways.js +++ b/js/test/Ice/operations/BatchOneways.js @@ -76,7 +76,7 @@ { var wait = function(count) { - if(count != 27) // 3 * 9 requests auto-flushed. + if(count < 27) // 3 * 9 requests auto-flushed. { return Promise.delay(10).then( function() |