@@ -108,7 +108,8 @@ class CheckPointManagerTest : public Test {
108108TEST_F (CheckPointManagerTest, SendCheckPoint) {
109109 config_.SetViewchangeCommitTimeout (100 );
110110 SystemInfo sys_info;
111- CheckPointManager manager (config_, &replica_communicator_, nullptr , &sys_info);
111+ CheckPointManager manager (config_, &replica_communicator_, nullptr ,
112+ &sys_info);
112113
113114 for (int i = 1 ; i <= 5 ; ++i) {
114115 std::unique_ptr<Request> request = std::make_unique<Request>();
@@ -135,7 +136,8 @@ TEST_F(CheckPointManagerTest, SendCheckPointOnce) {
135136 }));
136137
137138 SystemInfo sys_info;
138- CheckPointManager manager (config_, &replica_communicator_, nullptr , &sys_info);
139+ CheckPointManager manager (config_, &replica_communicator_, nullptr ,
140+ &sys_info);
139141 for (int i = 1 ; i <= 5 ; ++i) {
140142 std::unique_ptr<Request> request = std::make_unique<Request>();
141143 request->set_seq (i);
@@ -163,7 +165,8 @@ TEST_F(CheckPointManagerTest, SendCheckPointTwo) {
163165 }));
164166
165167 SystemInfo sys_info;
166- CheckPointManager manager (config_, &replica_communicator_, nullptr , &sys_info);
168+ CheckPointManager manager (config_, &replica_communicator_, nullptr ,
169+ &sys_info);
167170 std::unique_ptr<Request> request = std::make_unique<Request>();
168171 for (int i = 1 ; i <= 5 ; ++i) {
169172 std::unique_ptr<Request> request = std::make_unique<Request>();
@@ -261,7 +264,8 @@ TEST_F(CheckPointManagerTest, Votes) {
261264 std::future<bool > propose_done_future = propose_done.get_future ();
262265
263266 SystemInfo sys_info;
264- CheckPointManager manager (config_, &replica_communicator_, &mock_verifier, &sys_info);
267+ CheckPointManager manager (config_, &replica_communicator_, &mock_verifier,
268+ &sys_info);
265269 EXPECT_CALL (replica_communicator_, BroadCast)
266270 .WillRepeatedly (Invoke ([&](const google::protobuf::Message& message) {
267271 for (int i = 1 ; i <= 3 ; ++i) {
0 commit comments