diff options
Diffstat (limited to 'js/test/Ice/operations/Twoways.js')
-rw-r--r-- | js/test/Ice/operations/Twoways.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/test/Ice/operations/Twoways.js b/js/test/Ice/operations/Twoways.js index 69ef80fc852..7ec199ae834 100644 --- a/js/test/Ice/operations/Twoways.js +++ b/js/test/Ice/operations/Twoways.js @@ -124,7 +124,7 @@ return prx.ice_ping(); } - ).then(() => prx.ice_isA(Test.MyClass.ice_staticId()) + ).then(() => prx.ice_isA(Test._MyClassDisp.ice_staticId()) ).then(b => { test(b); @@ -132,7 +132,7 @@ } ).then(id => { - test(id === Test.MyDerivedClass.ice_staticId()); + test(id === Test._MyDerivedClassDisp.ice_staticId()); return prx.ice_ids(); } ).then(ids => |