We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d202904 commit c892df7Copy full SHA for c892df7
src/lib/dhcpsrv/tests/pool_unittest.cc
@@ -38,7 +38,7 @@ class PoolTest : public ::testing::Test {
38
/// hasDdnsParameters() method.
39
///
40
/// @param family sets the protocol to be used AF_INET or AF_INET6.
41
- void checkDdnsParamters(uint16_t family) {
+ void checkDdnsParameters(uint16_t family) {
42
PoolPtr pool;
43
if (family == AF_INET) {
44
pool.reset(new Pool4(IOAddress("192.0.2.0"), 25));
@@ -834,11 +834,11 @@ TEST(Pool6Test, additionalClasses) {
834
}
835
836
TEST_F(PoolTest, ddnsParameters4) {
837
- checkDdnsParamters(AF_INET);
+ checkDdnsParameters(AF_INET);
838
839
840
TEST_F(PoolTest, ddnsParameters6) {
841
- checkDdnsParamters(AF_INET6);
+ checkDdnsParameters(AF_INET6);
842
843
844
} // end of anonymous namespace
0 commit comments