diff options
Diffstat (limited to 'csharp/test/Ice/operations/TwowaysAMI.cs')
-rw-r--r-- | csharp/test/Ice/operations/TwowaysAMI.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/csharp/test/Ice/operations/TwowaysAMI.cs b/csharp/test/Ice/operations/TwowaysAMI.cs index bc7402a8745..73689588663 100644 --- a/csharp/test/Ice/operations/TwowaysAMI.cs +++ b/csharp/test/Ice/operations/TwowaysAMI.cs @@ -190,9 +190,9 @@ public class TwowaysAMI public void opMyClass(Test.MyClassPrx r, Test.MyClassPrx c1, Test.MyClassPrx c2) { - test(c1.ice_getIdentity().Equals(_communicator.stringToIdentity("test"))); - test(c2.ice_getIdentity().Equals(_communicator.stringToIdentity("noSuchIdentity"))); - test(r.ice_getIdentity().Equals(_communicator.stringToIdentity("test"))); + test(c1.ice_getIdentity().Equals(Ice.Util.stringToIdentity("test"))); + test(c2.ice_getIdentity().Equals(Ice.Util.stringToIdentity("noSuchIdentity"))); + test(r.ice_getIdentity().Equals(Ice.Util.stringToIdentity("test"))); // // We can't do the callbacks below in connection serialization mode. |