summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2019-07-16 16:09:08 +0200
committerJose <jose@zeroc.com>2019-07-16 16:09:08 +0200
commit428a2b21ff4838d56b5b989e11605a2f09d2f4e8 (patch)
treee79fb0135321d6c4c7a92f23eccbdbbba8bec7bb /js
parentFixes for python custom sequence mapping (#444) (diff)
downloadice-428a2b21ff4838d56b5b989e11605a2f09d2f4e8.tar.bz2
ice-428a2b21ff4838d56b5b989e11605a2f09d2f4e8.tar.xz
ice-428a2b21ff4838d56b5b989e11605a2f09d2f4e8.zip
Fix js/objetive-c cross test failure - Close #447
Diffstat (limited to 'js')
-rw-r--r--js/test/Ice/objects/Client.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/js/test/Ice/objects/Client.js b/js/test/Ice/objects/Client.js
index 23984ccaed8..9e214a1a4c4 100644
--- a/js/test/Ice/objects/Client.js
+++ b/js/test/Ice/objects/Client.js
@@ -475,7 +475,8 @@
test(f21.ice_getIdentity().name == "F21");
test(f22.ice_getIdentity().name == "F22");
- if(initial.hasF3())
+ const hasF3 = await initial.hasF3();
+ if(hasF3)
{
const [f31, f32] = await initial.opF3(
new Test.F3(new Test.F1("F11"), Test.F2Prx.uncheckedCast(communicator.stringToProxy("F21"))));