]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[400-merge-dhcpv4-option-definitions-fetched-from-the-cb-into-the-configuration]...
authorFrancis Dupont <fdupont@isc.org>
Tue, 26 Feb 2019 18:17:55 +0000 (19:17 +0100)
committerFrancis Dupont <fdupont@isc.org>
Tue, 26 Feb 2019 18:17:55 +0000 (19:17 +0100)
src/bin/dhcp4/tests/config_backend_unittest.cc

index cd620ef62375673a7456b67f0aaed4ab9d581072..dde99847c60aaae0e49b7ab6c0fea0288d281bb4 100644 (file)
@@ -323,12 +323,12 @@ TEST_F(Dhcp4CBTest, mergeOptionDefs) {
     ASSERT_TRUE(found_def);
     EXPECT_EQ(2, found_def->getCode());
 
-    // Definition "three" from first backened should be there.
+    // Definition "three" from first backend should be there.
     found_def = option_defs->get("isc", "three");
     ASSERT_TRUE(found_def);
     EXPECT_EQ(3, found_def->getCode());
 
-    // Definition "four" from first backened should not be there.
+    // Definition "four" from first backend should not be there.
     found_def = option_defs->get("isc", "four");
     ASSERT_FALSE(found_def);
 }