2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 13:37:55 +00:00

[#1235] Fixed spelling errors

modified:   cfg_duid_unittest.cc
This commit is contained in:
Thomas Markwalder
2020-06-16 10:46:15 -04:00
parent 151b22b5bb
commit 2b67918019

View 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);