Skip to content

Commit 6ef6ca9

Browse files
authored
chore: Fix issue found by clang-tidy (#1849)
Fixes #1848
1 parent 35b9a06 commit 6ef6ca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/app/StopperTests.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ TEST_F(StopperMakeCallbackTest, makeCallbackTest)
9696
serverMock_, loadBalancerMock_, etlServiceMock_, subscriptionManagerMock_, backendMock_, ioContextToStop_
9797
);
9898

99-
testing::Sequence s1, s2;
99+
testing::Sequence const s1, s2;
100100
EXPECT_CALL(serverMock_, stop).InSequence(s1).WillOnce([this]() { EXPECT_FALSE(isContextStopped()); });
101101
EXPECT_CALL(loadBalancerMock_, stop).InSequence(s2).WillOnce([this]() { EXPECT_FALSE(isContextStopped()); });
102102
EXPECT_CALL(etlServiceMock_, stop).InSequence(s1, s2).WillOnce([this]() { EXPECT_FALSE(isContextStopped()); });

0 commit comments

Comments
 (0)