diff options
Diffstat (limited to 'js/test/Ice/operations/Twoways.js')
-rw-r--r-- | js/test/Ice/operations/Twoways.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/test/Ice/operations/Twoways.js b/js/test/Ice/operations/Twoways.js index 4d238a5a0d5..8a098a5eb69 100644 --- a/js/test/Ice/operations/Twoways.js +++ b/js/test/Ice/operations/Twoways.js @@ -309,9 +309,9 @@ ).then( function(retval, p2, p3) { - test(p2.ice_getIdentity().equals(communicator.stringToIdentity("test"))); - test(p3.ice_getIdentity().equals(communicator.stringToIdentity("noSuchIdentity"))); - test(retval.ice_getIdentity().equals(communicator.stringToIdentity("test"))); + test(p2.ice_getIdentity().equals(Ice.stringToIdentity("test"))); + test(p3.ice_getIdentity().equals(Ice.stringToIdentity("noSuchIdentity"))); + test(retval.ice_getIdentity().equals(Ice.stringToIdentity("test"))); si1 = new Test.Structure(); si1.p = prx; |