From 8d536f64f3a628e0e1dde94961cf6fc72635a5b8 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Mon, 3 Jun 2024 09:12:46 -0400 Subject: [PATCH] [#3356] Addressed review comments Fixed typos and spelling. modified: dhcp6_srv_unittest.cc --- src/bin/dhcp6/tests/dhcp6_srv_unittest.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); -- 2.47.2