diff options
author | Bernard Normier <bernard@zeroc.com> | 2018-01-31 15:42:34 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2018-01-31 15:42:34 -0500 |
commit | 978401aea584b61326f27fc31cf66783baf5f1e8 (patch) | |
tree | b16e136ed07d955468684d243449864043ce84f6 | |
parent | Added support for ice_fixed, ice_getTimeout, ice_getCompress methods (ICE-799... (diff) | |
download | ice-978401aea584b61326f27fc31cf66783baf5f1e8.tar.bz2 ice-978401aea584b61326f27fc31cf66783baf5f1e8.tar.xz ice-978401aea584b61326f27fc31cf66783baf5f1e8.zip |
Fixed syntax error
-rw-r--r-- | objective-c/test/Ice/proxy/AllTests.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/objective-c/test/Ice/proxy/AllTests.m b/objective-c/test/Ice/proxy/AllTests.m index f51bc1be1ab..5b5828ec3eb 100644 --- a/objective-c/test/Ice/proxy/AllTests.m +++ b/objective-c/test/Ice/proxy/AllTests.m @@ -725,7 +725,7 @@ proxyAllTests(id<ICECommunicator> communicator) test([[[cl ice_oneway] ice_fixed:connection] ice_isOneway]); test([[cl ice_fixed:connection] ice_getConnection] == connection); test([[[cl ice_fixed:connection] ice_fixed:connection] ice_getConnection] == connection); - test([[cl ice_fixed:connection] ice_getTimeout] === nil); + test([[cl ice_fixed:connection] ice_getTimeout] == nil); id<ICEConnection> fixedConnection = [[cl ice_connectionId:@"ice_fixed"] ice_getConnection]; test([[[cl ice_fixed:connection] ice_fixed:fixedConnection] ice_getConnection] == fixedConnection); } |