diff options
author | Benoit Foucher <benoit@zeroc.com> | 2019-09-24 13:37:44 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2019-09-24 15:33:14 +0200 |
commit | f36869725c29a23a903a5533ff18c86c55092355 (patch) | |
tree | b1630868a1932d3378dea4746eb135350134d1a8 /js/test/Ice/timeout/Client.js | |
parent | Fix DK 13 build failures (diff) | |
download | ice-f36869725c29a23a903a5533ff18c86c55092355.tar.bz2 ice-f36869725c29a23a903a5533ff18c86c55092355.tar.xz ice-f36869725c29a23a903a5533ff18c86c55092355.zip |
Fix for invocation timeout sporadic test failure, fixes #547
Diffstat (limited to 'js/test/Ice/timeout/Client.js')
-rw-r--r-- | js/test/Ice/timeout/Client.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/test/Ice/timeout/Client.js b/js/test/Ice/timeout/Client.js index 74b1a89e844..c965a1a86b1 100644 --- a/js/test/Ice/timeout/Client.js +++ b/js/test/Ice/timeout/Client.js @@ -149,7 +149,7 @@ try { - await to.sleep(500); + await to.sleep(1000); test(false); } catch(ex) @@ -166,7 +166,7 @@ } catch(ex) { - test(ex instanceof Ice.InvocationTimeoutException, ex); + test(false); } } out.writeLine("ok"); |