Browse Source

[3618] Fixed ambiguous comment

Francis Dupont 9 years ago
parent
commit
b9fbf54c07
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/lib/dhcp/tests/pkt6_unittest.cc

+ 2 - 1
src/lib/dhcp/tests/pkt6_unittest.cc

@@ -353,7 +353,8 @@ TEST_F(Pkt6Test, unpackMalformed) {
     Pkt6Ptr too_short_pkt(new Pkt6(&shorty[0], shorty.size()));
     EXPECT_THROW(too_short_pkt->unpack(), isc::BadValue);
 
-    // The code should complain about remaining bytes that can't be parsed.
+    // The code should complain about remaining bytes that can't be parsed
+    // but doesn't do so yet.
     Pkt6Ptr trailing_garbage(new Pkt6(&malform1[0], malform1.size()));
     EXPECT_NO_THROW(trailing_garbage->unpack());