summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarcin Siodelski <marcin@isc.org>2024-11-28 15:25:23 +0100
committerMarcin Siodelski <marcin@isc.org>2024-12-04 10:21:45 +0100
commit0b9793f8d9a1c5d04304820436f087018413fcda (patch)
tree907508766f1fccd32a3ffaaa051992aa5f958908 /src
parent[#3655] Fix chicken-egg in state info (diff)
downloadkea-0b9793f8d9a1c5d04304820436f087018413fcda.tar.xz
kea-0b9793f8d9a1c5d04304820436f087018413fcda.zip
[#3655] Fix a comment
Diffstat (limited to 'src')
-rw-r--r--src/hooks/dhcp/high_availability/tests/ha_service_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hooks/dhcp/high_availability/tests/ha_service_unittest.cc b/src/hooks/dhcp/high_availability/tests/ha_service_unittest.cc
index 6e00f55610..3a740243d5 100644
--- a/src/hooks/dhcp/high_availability/tests/ha_service_unittest.cc
+++ b/src/hooks/dhcp/high_availability/tests/ha_service_unittest.cc
@@ -5398,8 +5398,8 @@ TEST_F(HAServiceTest, processMaintenanceNotifyCancelSetAvoidDeadlock) {
ASSERT_NO_THROW(rsp = service.processMaintenanceNotify(true, "ready"));
EXPECT_EQ(HA_READY_ST, service.communication_state_->getPartnerState());
- // The state machine should have been transitioned to the state it was in
- // prior to transitioning to the in-maintenance state.
+ // The state machine should have been transitioned to the waiting state
+ // given the partner didn't provide their state.
EXPECT_EQ(HA_WAITING_ST, service.getCurrState());
}