Browse Source

[5075] spelling

Francis Dupont 8 years ago
parent
commit
f913f2104d

+ 1 - 1
src/bin/agent/ctrl_agent_messages.mes

@@ -11,7 +11,7 @@ This is a debug message issued when the Control Agent application
 encounters an unrecoverable error from within the event loop.
 
 % CTRL_AGENT_RUN_EXIT application is exiting the event loop
-This is a debug message issued when the Control Angent exits its
+This is a debug message issued when the Control Agent exits its
 event loop.
 
 % CTRL_AGENT_STARTED Kea Control Agent version %1 started

+ 3 - 3
src/bin/agent/tests/ctrl_agent_controller_unittests.cc

@@ -102,7 +102,7 @@ TEST_F(CtrlAgentControllerTest, launchNormalShutdown) {
     time_duration elapsed_time;
     runWithConfig(valid_agent_config, 1000, elapsed_time);
 
-    // Give a generous margin to accomodate slower test environs.
+    // Give a generous margin to accommodate slower test environs.
     EXPECT_TRUE(elapsed_time.total_milliseconds() >= 800 &&
                 elapsed_time.total_milliseconds() <= 1300);
 }
@@ -118,7 +118,7 @@ TEST_F(CtrlAgentControllerTest, sigintShutdown) {
     runWithConfig(valid_agent_config, 1000, elapsed_time);
 
     // Signaled shutdown should make our elapsed time much smaller than
-    // the maximum run time.  Give generous margin to accomodate slow
+    // the maximum run time.  Give generous margin to accommodate slow
     // test environs.
     EXPECT_TRUE(elapsed_time.total_milliseconds() < 300);
 }
@@ -133,7 +133,7 @@ TEST_F(CtrlAgentControllerTest, sigtermShutdown) {
     runWithConfig(valid_agent_config, 1000, elapsed_time);
 
     // Signaled shutdown should make our elapsed time much smaller than
-    // the maximum run time.  Give generous margin to accomodate slow
+    // the maximum run time.  Give generous margin to accommodate slow
     // test environs.
     EXPECT_TRUE(elapsed_time.total_milliseconds() < 300);
 }