summaryrefslogtreecommitdiff
path: root/js/test/Ice/timeout/Client.js
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2017-10-02 18:12:06 +0200
committerJose <jose@zeroc.com>2017-10-02 18:12:06 +0200
commit336828d5ded57be680eee0fb8139ddfa0c422be0 (patch)
treed9021a80ad8be9b7545925cdef16fc356b60ba15 /js/test/Ice/timeout/Client.js
parentJavaScript style fixes (diff)
downloadice-336828d5ded57be680eee0fb8139ddfa0c422be0.tar.bz2
ice-336828d5ded57be680eee0fb8139ddfa0c422be0.tar.xz
ice-336828d5ded57be680eee0fb8139ddfa0c422be0.zip
JavaScript testsuite improvements and simplifications
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 8cf8003c028..5170789cdcc 100644
--- a/js/test/Ice/timeout/Client.js
+++ b/js/test/Ice/timeout/Client.js
@@ -173,7 +173,7 @@
}
catch(ex)
{
- test(false);
+ test(false, ex);
}
while(true)
@@ -185,7 +185,7 @@
}
catch(ex)
{
- test(ex instanceof Ice.ConnectionManuallyClosedException); // Expected
+ test(ex instanceof Ice.ConnectionManuallyClosedException, ex); // Expected
test(ex.graceful);
break;
}