diff options
author | Marcin Siodelski <marcin@isc.org> | 2023-04-19 16:08:11 +0200 |
---|---|---|
committer | Marcin Siodelski <marcin@isc.org> | 2023-04-19 18:27:25 +0200 |
commit | 0c30fc802cc84d85ca425f7aa417c3e69250590c (patch) | |
tree | c09de3e00cc1dbaec1ee205439a49073b0dc9ef2 /src/lib/dhcpsrv/tests/flq_allocator_unittest.cc | |
parent | [#2823] Added ChangeLog for #2823 (diff) | |
download | kea-0c30fc802cc84d85ca425f7aa417c3e69250590c.tar.xz kea-0c30fc802cc84d85ca425f7aa417c3e69250590c.zip |
[#2823] Addressed review comments
Diffstat (limited to 'src/lib/dhcpsrv/tests/flq_allocator_unittest.cc')
-rw-r--r-- | src/lib/dhcpsrv/tests/flq_allocator_unittest.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib/dhcpsrv/tests/flq_allocator_unittest.cc b/src/lib/dhcpsrv/tests/flq_allocator_unittest.cc index 33ae382901..350106f11b 100644 --- a/src/lib/dhcpsrv/tests/flq_allocator_unittest.cc +++ b/src/lib/dhcpsrv/tests/flq_allocator_unittest.cc @@ -361,8 +361,11 @@ public: // Test that the allocator returns the correct type. TEST_F(FreeLeaseQueueAllocatorTest6, getType) { - FreeLeaseQueueAllocator alloc(Lease::TYPE_NA, subnet_); - EXPECT_EQ("flq", alloc.getType()); + FreeLeaseQueueAllocator allocNA(Lease::TYPE_NA, subnet_); + EXPECT_EQ("flq", allocNA.getType()); + + FreeLeaseQueueAllocator allocPD(Lease::TYPE_PD, subnet_); + EXPECT_EQ("flq", allocPD.getType()); } // Test populating free DHCPv6 address leases to the queue. |