Browse Source

[3806] Fixed broken unit test after recent changes.

Marcin Siodelski 10 years ago
parent
commit
43695c2152
1 changed files with 1 additions and 2 deletions
  1. 1 2
      src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc

+ 1 - 2
src/lib/dhcpsrv/tests/dhcp_parsers_unittest.cc

@@ -533,8 +533,7 @@ TEST_F(ParseConfigTest, basicOptionDataTest) {
     ASSERT_TRUE(opt_ptr);
 
     // Verify that the option definition is correct.
-    std::string val = "type=100, len=4, data fields:\n "
-                      " #0 192.0.2.0 ( ipv4-address ) \n";
+    std::string val = "type=00100, len=00004: 192.0.2.0 (ipv4-address)";
 
     EXPECT_EQ(val, opt_ptr->toText());
 }