summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2018-01-31 15:42:34 -0500
committerBernard Normier <bernard@zeroc.com>2018-01-31 15:42:34 -0500
commit978401aea584b61326f27fc31cf66783baf5f1e8 (patch)
treeb16e136ed07d955468684d243449864043ce84f6
parentAdded support for ice_fixed, ice_getTimeout, ice_getCompress methods (ICE-799... (diff)
downloadice-978401aea584b61326f27fc31cf66783baf5f1e8.tar.bz2
ice-978401aea584b61326f27fc31cf66783baf5f1e8.tar.xz
ice-978401aea584b61326f27fc31cf66783baf5f1e8.zip
Fixed syntax error
-rw-r--r--objective-c/test/Ice/proxy/AllTests.m2
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);
}