From 6ecca9e19c3c7ad73e73df588eeed8a9e816d5e2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 17 Mar 2026 11:43:07 +0000 Subject: [PATCH] style: clang-tidy auto fixes (#3004) Fixes #3003. --- tests/unit/cluster/FallbackRecoveryTimerTests.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/unit/cluster/FallbackRecoveryTimerTests.cpp b/tests/unit/cluster/FallbackRecoveryTimerTests.cpp index d387bfafe..396b9c2cc 100644 --- a/tests/unit/cluster/FallbackRecoveryTimerTests.cpp +++ b/tests/unit/cluster/FallbackRecoveryTimerTests.cpp @@ -21,8 +21,6 @@ #include #include -#include -#include #include #include @@ -45,7 +43,7 @@ protected: TEST_F(FallbackRecoveryTimerTest, NotRunningByDefault) { - FallbackRecoveryTimer timer{ctx_, std::chrono::hours{1}}; + FallbackRecoveryTimer const timer{ctx_, std::chrono::hours{1}}; EXPECT_FALSE(timer.isRunning()); }