From: Francis Dupont Date: Thu, 15 Dec 2016 20:49:33 +0000 (+0100) Subject: [5075] spelling X-Git-Tag: trac5088_base~8^2~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f913f2104de18ce46929ab9819a1e616a148779e;p=thirdparty%2Fkea.git [5075] spelling --- diff --git a/src/bin/agent/ctrl_agent_messages.mes b/src/bin/agent/ctrl_agent_messages.mes index bf9e2bba7b..db6d17e9b1 100644 --- a/src/bin/agent/ctrl_agent_messages.mes +++ b/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 diff --git a/src/bin/agent/tests/ctrl_agent_controller_unittests.cc b/src/bin/agent/tests/ctrl_agent_controller_unittests.cc index 3ca2306e34..6ae9aa06b1 100644 --- a/src/bin/agent/tests/ctrl_agent_controller_unittests.cc +++ b/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); }