diff options
author | Austin Henriksen <austin@zeroc.com> | 2023-12-06 11:35:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 11:35:59 -0500 |
commit | e14afea88e4b3b65d29a64faa0f088cb986a9258 (patch) | |
tree | a3f6e11fab21a5105f40682d8fedeff25500a1a2 /cpp/test | |
parent | Fixed typo in _makeLambdaOutgoing name (diff) | |
download | ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.bz2 ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.xz ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.zip |
Fixed typos. (#1580)
Diffstat (limited to 'cpp/test')
-rw-r--r-- | cpp/test/Ice/background/EndpointI.cpp | 2 | ||||
-rw-r--r-- | cpp/test/Ice/optional/Test.ice | 2 | ||||
-rw-r--r-- | cpp/test/Ice/optional/TestAMD.ice | 2 | ||||
-rw-r--r-- | cpp/test/Ice/retry/AllTests.cpp | 2 | ||||
-rw-r--r-- | cpp/test/IceGrid/deployer/AllTests.cpp | 2 | ||||
-rw-r--r-- | cpp/test/IceGrid/deployer/application.xml | 2 | ||||
-rw-r--r-- | cpp/test/IceGrid/replication/AllTests.cpp | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/cpp/test/Ice/background/EndpointI.cpp b/cpp/test/Ice/background/EndpointI.cpp index 16b513bc0c3..da0facf3b67 100644 --- a/cpp/test/Ice/background/EndpointI.cpp +++ b/cpp/test/Ice/background/EndpointI.cpp @@ -312,7 +312,7 @@ EndpointI::operator<(const Ice::LocalObject& r) const int EndpointI::hash() const { - return _endpoint->hash(); + return _endpoint->hash(); } string diff --git a/cpp/test/Ice/optional/Test.ice b/cpp/test/Ice/optional/Test.ice index 66842e6f598..f7d736b0f85 100644 --- a/cpp/test/Ice/optional/Test.ice +++ b/cpp/test/Ice/optional/Test.ice @@ -71,7 +71,7 @@ dictionary<int, OneOptional*> IntOneOptionalPrxDict; class MultiOptional { optional(1) byte a; - optional(2) bool b; + optional(2) bool b; optional(3) short c; optional(4) int d; optional(5) long e; diff --git a/cpp/test/Ice/optional/TestAMD.ice b/cpp/test/Ice/optional/TestAMD.ice index c0393c4faed..712ece3771e 100644 --- a/cpp/test/Ice/optional/TestAMD.ice +++ b/cpp/test/Ice/optional/TestAMD.ice @@ -71,7 +71,7 @@ dictionary<int, OneOptional*> IntOneOptionalPrxDict; class MultiOptional { optional(1) byte a; - optional(2) bool b; + optional(2) bool b; optional(3) short c; optional(4) int d; optional(5) long e; diff --git a/cpp/test/Ice/retry/AllTests.cpp b/cpp/test/Ice/retry/AllTests.cpp index fe64632f5ab..ff0444e034b 100644 --- a/cpp/test/Ice/retry/AllTests.cpp +++ b/cpp/test/Ice/retry/AllTests.cpp @@ -256,7 +256,7 @@ allTests(const Ice::CommunicatorPtr& communicator, const Ice::CommunicatorPtr& c test(retry1->opIdempotent(4) == 4); testInvocationCount(1); testFailureCount(0); - // It suceeded after 3 retry because of the failed opIdempotent on the fixed proxy above + // It succeeded after 3 retry because of the failed opIdempotent on the fixed proxy above testRetryCount(3); cout << "ok" << endl; } diff --git a/cpp/test/IceGrid/deployer/AllTests.cpp b/cpp/test/IceGrid/deployer/AllTests.cpp index 8d703f8593a..6e0ead4e8f4 100644 --- a/cpp/test/IceGrid/deployer/AllTests.cpp +++ b/cpp/test/IceGrid/deployer/AllTests.cpp @@ -702,7 +702,7 @@ allTests(Test::TestHelper* helper) obj = TestIntfPrx::checkedCast(comm->stringToProxy("IceBox1-Service4@IceBox1.Service4.Service4")); test(obj->getProperty("ServerInstanceServiceProperty") == "service4"); obj = TestIntfPrx::checkedCast(comm->stringToProxy("IceBox2-Service4@IceBox2.Service4.Service4")); - test(obj->getProperty("IceBoxInstanceProperty") == "overriden"); + test(obj->getProperty("IceBoxInstanceProperty") == "overridden"); cout << "ok" << endl; diff --git a/cpp/test/IceGrid/deployer/application.xml b/cpp/test/IceGrid/deployer/application.xml index ba46b25089c..4010ca984e3 100644 --- a/cpp/test/IceGrid/deployer/application.xml +++ b/cpp/test/IceGrid/deployer/application.xml @@ -89,7 +89,7 @@ <property name="IceBoxInstanceProperty" value="${name}"/> </properties> <properties service="${service4}"> - <property name="IceBoxInstanceProperty" value="overriden"/> + <property name="IceBoxInstanceProperty" value="overridden"/> </properties> </server-instance> diff --git a/cpp/test/IceGrid/replication/AllTests.cpp b/cpp/test/IceGrid/replication/AllTests.cpp index 96ecf08aa20..acb9ae5e4fe 100644 --- a/cpp/test/IceGrid/replication/AllTests.cpp +++ b/cpp/test/IceGrid/replication/AllTests.cpp @@ -1438,7 +1438,7 @@ allTests(Test::TestHelper* helper) admin->sendSignal("Node2", "SIGSTOP"); try { - // Wait for Node2 to be stopped by getting the TestAdapter.Server2 enpdoints + // Wait for Node2 to be stopped by getting the TestAdapter.Server2 endpoints while(true) { masterAdmin->ice_invocationTimeout(100)->getAdapterInfo("TestAdapter.Server2"); |