From: Thomas Markwalder Date: Wed, 24 Apr 2024 11:34:32 +0000 (-0400) Subject: [#3314] Addressed review comment X-Git-Tag: Kea-2.5.8~36 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=eba8f2ab984ab9058d679520308b94c9ebb3c108;p=thirdparty%2Fkea.git [#3314] Addressed review comment Typo in UT commentary. --- diff --git a/src/lib/hooks/tests/callout_handle_unittest.cc b/src/lib/hooks/tests/callout_handle_unittest.cc index 4a6d38c4dc..677f325fe6 100644 --- a/src/lib/hooks/tests/callout_handle_unittest.cc +++ b/src/lib/hooks/tests/callout_handle_unittest.cc @@ -395,7 +395,7 @@ TEST_F(CalloutHandleTest, getOptionalContext) { // Set "two" in the context. handle->setContext("two", two); - // Should be find two but not three. + // Should find two but not three. EXPECT_TRUE(handle->getOptionalContext("two", value)); EXPECT_EQ(two, value); EXPECT_FALSE(handle->getOptionalContext("three", value));