summaryrefslogtreecommitdiff
path: root/js/test
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2015-05-06 11:57:21 -0230
committerDwayne Boone <dwayne@zeroc.com>2015-05-06 11:57:21 -0230
commitb081ba7f8c4810fe5876e5eca050b4fdab48e05b (patch)
tree8d25a518b193dfbb5a7fe3d41d6d12fdaf0b9f84 /js/test
parentFixed Atomic.h to support VS2008 build (diff)
downloadice-b081ba7f8c4810fe5876e5eca050b4fdab48e05b.tar.bz2
ice-b081ba7f8c4810fe5876e5eca050b4fdab48e05b.tar.xz
ice-b081ba7f8c4810fe5876e5eca050b4fdab48e05b.zip
ICE-6484 java exceptions test fails with --cross=js
Diffstat (limited to 'js/test')
-rw-r--r--js/test/Ice/exceptions/Client.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/test/Ice/exceptions/Client.js b/js/test/Ice/exceptions/Client.js
index d0e75cf3a53..5defef53b5d 100644
--- a/js/test/Ice/exceptions/Client.js
+++ b/js/test/Ice/exceptions/Client.js
@@ -125,7 +125,8 @@
failCB,
function(ex)
{
- test(ex instanceof Ice.ConnectionLostException);
+ test(ex instanceof Ice.ConnectionLostException ||
+ ex instanceof Ice.UnknownException);
out.writeLine("ok");
}
);