]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1235] Fixed spelling errors
authorThomas Markwalder <tmark@isc.org>
Tue, 16 Jun 2020 14:46:15 +0000 (10:46 -0400)
committerThomas Markwalder <tmark@isc.org>
Tue, 16 Jun 2020 16:07:00 +0000 (12:07 -0400)
modified:   cfg_duid_unittest.cc

src/lib/dhcpsrv/tests/cfg_duid_unittest.cc

index 6b061f6f2800ed7f309974bd5d14683aeebe054e..10da5b9b4fd88f61b442fca4774aea96d2190957 100644 (file)
@@ -195,7 +195,7 @@ TEST_F(CfgDUIDTest, createLLT) {
     // Verify that the DUID file has been created.
     EXPECT_TRUE(fileExists(absolutePath(DUID_FILE_NAME)));
 
-    // Verifiy getCurrentDuid() returns the value created.
+    // Verify getCurrentDuid() returns the value created.
     DuidPtr current_duid = cfg.getCurrentDuid();
     ASSERT_TRUE(current_duid);
     EXPECT_EQ(*current_duid, *duid);
@@ -220,7 +220,7 @@ TEST_F(CfgDUIDTest, createEN) {
     // Verify that the DUID file has been created.
     EXPECT_TRUE(fileExists(absolutePath(DUID_FILE_NAME)));
 
-    // Verifiy getCurrentDuid() returns the value created.
+    // Verify getCurrentDuid() returns the value created.
     DuidPtr current_duid = cfg.getCurrentDuid();
     ASSERT_TRUE(current_duid);
     EXPECT_EQ(*current_duid, *duid);
@@ -245,7 +245,7 @@ TEST_F(CfgDUIDTest, createLL) {
     // Verify that the DUID file has been created.
     EXPECT_TRUE(fileExists(absolutePath(DUID_FILE_NAME)));
 
-    // Verifiy getCurrentDuid() returns the value created.
+    // Verify getCurrentDuid() returns the value created.
     DuidPtr current_duid = cfg.getCurrentDuid();
     ASSERT_TRUE(current_duid);
     EXPECT_EQ(*current_duid, *duid);
@@ -271,7 +271,7 @@ TEST_F(CfgDUIDTest, createDisableWrite) {
     // DUID persistence is disabled so there should be no DUID file.
     EXPECT_FALSE(fileExists(absolutePath(DUID_FILE_NAME)));
 
-    // Verifiy getCurrentDuid() returns the value created.
+    // Verify getCurrentDuid() returns the value created.
     DuidPtr current_duid = cfg.getCurrentDuid();
     ASSERT_TRUE(current_duid);
     EXPECT_EQ(*current_duid, *duid);