diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-05-06 11:57:21 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-05-06 11:57:21 -0230 |
commit | b081ba7f8c4810fe5876e5eca050b4fdab48e05b (patch) | |
tree | 8d25a518b193dfbb5a7fe3d41d6d12fdaf0b9f84 /js/test | |
parent | Fixed Atomic.h to support VS2008 build (diff) | |
download | ice-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.js | 3 |
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"); } ); |