From: Thomas Markwalder Date: Tue, 16 Jun 2020 14:46:15 +0000 (-0400) Subject: [#1235] Fixed spelling errors X-Git-Tag: Kea-1.7.9~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b6791801969240b3fde971bd232197c7d0db89f;p=thirdparty%2Fkea.git [#1235] Fixed spelling errors modified: cfg_duid_unittest.cc --- diff --git a/src/lib/dhcpsrv/tests/cfg_duid_unittest.cc b/src/lib/dhcpsrv/tests/cfg_duid_unittest.cc index 6b061f6f28..10da5b9b4f 100644 --- a/src/lib/dhcpsrv/tests/cfg_duid_unittest.cc +++ b/src/lib/dhcpsrv/tests/cfg_duid_unittest.cc @@ -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);