Skip to content

Commit

Permalink
[#3049] Spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
fxdupont authored and tmarkwalder committed Jan 22, 2025
1 parent d202904 commit c892df7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/dhcpsrv/tests/pool_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PoolTest : public ::testing::Test {
/// hasDdnsParameters() method.
///
/// @param family sets the protocol to be used AF_INET or AF_INET6.
void checkDdnsParamters(uint16_t family) {
void checkDdnsParameters(uint16_t family) {
PoolPtr pool;
if (family == AF_INET) {
pool.reset(new Pool4(IOAddress("192.0.2.0"), 25));
Expand Down Expand Up @@ -834,11 +834,11 @@ TEST(Pool6Test, additionalClasses) {
}

TEST_F(PoolTest, ddnsParameters4) {
checkDdnsParamters(AF_INET);
checkDdnsParameters(AF_INET);
}

TEST_F(PoolTest, ddnsParameters6) {
checkDdnsParamters(AF_INET6);
checkDdnsParameters(AF_INET6);
}

} // end of anonymous namespace

0 comments on commit c892df7

Please sign in to comment.