From: Thomas Markwalder Date: Mon, 3 Jun 2024 13:12:46 +0000 (-0400) Subject: [#3356] Addressed review comments X-Git-Tag: Kea-2.7.0~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d536f64f3a628e0e1dde94961cf6fc72635a5b8;p=thirdparty%2Fkea.git [#3356] Addressed review comments Fixed typos and spelling. modified: dhcp6_srv_unittest.cc --- diff --git a/src/bin/dhcp6/tests/dhcp6_srv_unittest.cc b/src/bin/dhcp6/tests/dhcp6_srv_unittest.cc index 9c813bf5e8..1f790c4dea 100644 --- a/src/bin/dhcp6/tests/dhcp6_srv_unittest.cc +++ b/src/bin/dhcp6/tests/dhcp6_srv_unittest.cc @@ -3995,8 +3995,8 @@ TEST_F(Dhcpv6SrvTest, generateFqdnUpdate) { // Check if we get response at all checkResponse(reply, DHCPV6_REPLY, 1234); - // check that an IA_NA with an iaaddr was returned for the requeted - // address with lifetime so 0. + // check that an IA_NA with an iaaddr was returned for the requested + // address with lifetimes > 0. boost::shared_ptr iaaddr = checkIA_NA(reply, 234, 1000, 2000); ASSERT_TRUE(iaaddr); EXPECT_EQ(addr, iaaddr->getAddress()); @@ -4062,7 +4062,7 @@ TEST_F(Dhcpv6SrvTest, generateFqdnNoUpdate) { // Check if we get response at all checkResponse(reply, DHCPV6_REPLY, 1234); - // Check that an IA_NA with an iaaddr was returned for the requeted + // Check that an IA_NA with an iaaddr was returned for the requested // address with lifetimes of 0. boost::shared_ptr iaaddr = checkIA_NA(reply, 234, 0, 0); ASSERT_TRUE(iaaddr);