]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3356] Addressed review comments
authorThomas Markwalder <tmark@isc.org>
Mon, 3 Jun 2024 13:12:46 +0000 (09:12 -0400)
committerThomas Markwalder <tmark@isc.org>
Mon, 3 Jun 2024 13:12:46 +0000 (09:12 -0400)
Fixed typos and spelling.

modified:   dhcp6_srv_unittest.cc

src/bin/dhcp6/tests/dhcp6_srv_unittest.cc

index 9c813bf5e832ff25751f326c743bd86080faee7e..1f790c4deaf1091cbcded675d99a87e4a3a10b5f 100644 (file)
@@ -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<Option6IAAddr> 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<Option6IAAddr> iaaddr = checkIA_NA(reply, 234, 0, 0); 
     ASSERT_TRUE(iaaddr);