From: Josh Soref Date: Sun, 23 Jul 2017 15:43:16 +0000 (-0400) Subject: spelling: betelgeuse X-Git-Tag: trac5124a_base~35^2~199 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8a8ad42e93c8c9f176c5b80f3b0849c2b8e3f5b;p=thirdparty%2Fkea.git spelling: betelgeuse --- diff --git a/src/bin/agent/tests/ca_cfg_mgr_unittests.cc b/src/bin/agent/tests/ca_cfg_mgr_unittests.cc index a2dab2a3b8..7bd745be1d 100644 --- a/src/bin/agent/tests/ca_cfg_mgr_unittests.cc +++ b/src/bin/agent/tests/ca_cfg_mgr_unittests.cc @@ -181,13 +181,13 @@ const char* AGENT_CONFIGS[] = { "{ }", // Configuration 1: http parameters only (no control sockets, not hooks) - "{ \"http-host\": \"betelguese\",\n" + "{ \"http-host\": \"betelgeuse\",\n" " \"http-port\": 8001\n" "}", // Configuration 2: http and 1 socket "{\n" - " \"http-host\": \"betelguese\",\n" + " \"http-host\": \"betelgeuse\",\n" " \"http-port\": 8001,\n" " \"control-sockets\": {\n" " \"dhcp4\": {\n" @@ -198,7 +198,7 @@ const char* AGENT_CONFIGS[] = { // Configuration 3: http and all 3 sockets "{\n" - " \"http-host\": \"betelguese\",\n" + " \"http-host\": \"betelgeuse\",\n" " \"http-port\": 8001,\n" " \"control-sockets\": {\n" " \"dhcp4\": {\n" @@ -217,7 +217,7 @@ const char* AGENT_CONFIGS[] = { // CA is able to load hook libraries that augment its operation. // The primary functionality is the ability to add new commands. "{\n" - " \"http-host\": \"betelguese\",\n" + " \"http-host\": \"betelgeuse\",\n" " \"http-port\": 8001,\n" " \"control-sockets\": {\n" " \"dhcp4\": {\n" @@ -236,7 +236,7 @@ const char* AGENT_CONFIGS[] = { // Configuration 5: http and 1 socket (d2 only) "{\n" - " \"http-host\": \"betelguese\",\n" + " \"http-host\": \"betelgeuse\",\n" " \"http-port\": 8001,\n" " \"control-sockets\": {\n" " \"d2\": {\n" @@ -247,7 +247,7 @@ const char* AGENT_CONFIGS[] = { // Configuration 6: http and 1 socket (dhcp6 only) "{\n" - " \"http-host\": \"betelguese\",\n" + " \"http-host\": \"betelgeuse\",\n" " \"http-port\": 8001,\n" " \"control-sockets\": {\n" " \"dhcp6\": {\n" @@ -303,7 +303,7 @@ TEST_F(AgentParserTest, configParseHttpOnly) { CtrlAgentCfgContextPtr ctx = cfg_mgr_.getCtrlAgentCfgContext(); ASSERT_TRUE(ctx); - EXPECT_EQ("betelguese", ctx->getHttpHost()); + EXPECT_EQ("betelgeuse", ctx->getHttpHost()); EXPECT_EQ(8001, ctx->getHttpPort()); }