Skip to content

Commit 8d536f6

Browse files
committed
[#3356] Addressed review comments
Fixed typos and spelling. modified: dhcp6_srv_unittest.cc
1 parent 5f82298 commit 8d536f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/dhcp6/tests/dhcp6_srv_unittest.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3995,8 +3995,8 @@ TEST_F(Dhcpv6SrvTest, generateFqdnUpdate) {
39953995
// Check if we get response at all
39963996
checkResponse(reply, DHCPV6_REPLY, 1234);
39973997

3998-
// check that an IA_NA with an iaaddr was returned for the requeted
3999-
// address with lifetime so 0.
3998+
// check that an IA_NA with an iaaddr was returned for the requested
3999+
// address with lifetimes > 0.
40004000
boost::shared_ptr<Option6IAAddr> iaaddr = checkIA_NA(reply, 234, 1000, 2000);
40014001
ASSERT_TRUE(iaaddr);
40024002
EXPECT_EQ(addr, iaaddr->getAddress());
@@ -4062,7 +4062,7 @@ TEST_F(Dhcpv6SrvTest, generateFqdnNoUpdate) {
40624062
// Check if we get response at all
40634063
checkResponse(reply, DHCPV6_REPLY, 1234);
40644064

4065-
// Check that an IA_NA with an iaaddr was returned for the requeted
4065+
// Check that an IA_NA with an iaaddr was returned for the requested
40664066
// address with lifetimes of 0.
40674067
boost::shared_ptr<Option6IAAddr> iaaddr = checkIA_NA(reply, 234, 0, 0);
40684068
ASSERT_TRUE(iaaddr);

0 commit comments

Comments
 (0)