Browse Source

[4501] Update for #5122

Francis Dupont 8 years ago
parent
commit
62acfe9d2b

+ 2 - 2
src/bin/dhcp4/tests/config_parser_unittest.cc

@@ -4746,10 +4746,10 @@ TEST_F(Dhcp4ParserTest, outsideSubnetPool) {
     ASSERT_NO_THROW(text = comment->stringValue());
 
     EXPECT_EQ(1, rcode);
-    string expected = "subnet configuration failed (<string>:5:14): "
+    string expected = "subnet configuration failed: "
 	"a pool of type V4, with the following address range: "
 	"192.0.2.1-192.0.2.100 does not match the prefix of a subnet: "
-	"10.0.2.0/24 to which it is being added";
+	"10.0.2.0/24 to which it is being added (<string>:5:14)";
     EXPECT_EQ(expected, text);
 }
 

+ 3 - 3
src/bin/dhcp6/tests/config_parser_unittest.cc

@@ -5219,10 +5219,10 @@ TEST_F(Dhcp6ParserTest, outsideSubnetPool) {
     ASSERT_NO_THROW(text = comment->stringValue());
 
     EXPECT_EQ(1, rcode);
-    string expected = "subnet configuration failed (<string>:6:14): "
+    string expected = "subnet configuration failed: "
         "a pool of type IA_NA, with the following address range: "
-        "2001:db8::-2001:db8::ffff does not match the prefix of "
-        "a subnet: 2001:dc8::/32 to which it is being added";
+        "2001:db8::-2001:db8::ffff does not match the prefix of a subnet: "
+        "2001:dc8::/32 to which it is being added (<string>:6:14)";
     EXPECT_EQ(expected, text);
 }