Skip to content

Commit

Permalink
chore: Fix issue found by clang-tidy (#1849)
Browse files Browse the repository at this point in the history
Fixes #1848
  • Loading branch information
kuznetsss authored Jan 23, 2025
1 parent 35b9a06 commit 6ef6ca9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/app/StopperTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ TEST_F(StopperMakeCallbackTest, makeCallbackTest)
serverMock_, loadBalancerMock_, etlServiceMock_, subscriptionManagerMock_, backendMock_, ioContextToStop_
);

testing::Sequence s1, s2;
testing::Sequence const s1, s2;
EXPECT_CALL(serverMock_, stop).InSequence(s1).WillOnce([this]() { EXPECT_FALSE(isContextStopped()); });
EXPECT_CALL(loadBalancerMock_, stop).InSequence(s2).WillOnce([this]() { EXPECT_FALSE(isContextStopped()); });
EXPECT_CALL(etlServiceMock_, stop).InSequence(s1, s2).WillOnce([this]() { EXPECT_FALSE(isContextStopped()); });
Expand Down

0 comments on commit 6ef6ca9

Please sign in to comment.