From: Razvan Becheriu Date: Thu, 2 Jul 2026 08:38:42 +0000 (+0300) Subject: [#4526] addressed review X-Git-Tag: Kea-3.3.0~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4501d096726ed511f90edd6e6dad728b329a13dc;p=thirdparty%2Fkea.git [#4526] addressed review --- diff --git a/src/hooks/dhcp/forensic_log/tests/legal_log6_unittests.cc b/src/hooks/dhcp/forensic_log/tests/legal_log6_unittests.cc index d973bf82cf..aed0e2aba0 100644 --- a/src/hooks/dhcp/forensic_log/tests/legal_log6_unittests.cc +++ b/src/hooks/dhcp/forensic_log/tests/legal_log6_unittests.cc @@ -2846,7 +2846,6 @@ TEST_F(CalloutTestv6, customLogRenderError) { { ScopedCalloutHandleState callout_handle_state(handle); handle->setArgument("lease6", lease6); - handle->setArgument("query6", decline_); ASSERT_NO_THROW(ret = lease6_decline(*handle)); ASSERT_EQ(0, ret); } diff --git a/src/hooks/dhcp/forensic_log/tests/test_utils.h b/src/hooks/dhcp/forensic_log/tests/test_utils.h index 1964ba9bb7..61494741e9 100644 --- a/src/hooks/dhcp/forensic_log/tests/test_utils.h +++ b/src/hooks/dhcp/forensic_log/tests/test_utils.h @@ -121,6 +121,8 @@ public: } /// @brief Sets the mark continuation lines flag. + /// + /// @param mark_continuation_lines The mark continuation lines flag. void setMarkContinuationLines(bool mark_continuation_lines) { mark_continuation_lines_ = mark_continuation_lines; }