summaryrefslogtreecommitdiff
path: root/js/test/Ice/timeout/Client.js
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2019-09-24 13:37:44 +0200
committerBenoit Foucher <benoit@zeroc.com>2019-09-24 15:33:14 +0200
commitf36869725c29a23a903a5533ff18c86c55092355 (patch)
treeb1630868a1932d3378dea4746eb135350134d1a8 /js/test/Ice/timeout/Client.js
parentFix DK 13 build failures (diff)
downloadice-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.js4
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");