Skip to content

Commit cd3f9e6

Browse files
committed
format
1 parent 1cac8a7 commit cd3f9e6

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

tests/ReaderTest.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ TEST_P(ReaderTest, testAsyncRead) {
114114
ASSERT_EQ(ResultOk, producer.send(msg));
115115
}
116116

117-
// readNextAsync callbacks may complete in any order (e.g. with partitioned topic); collect all 10 then verify set
117+
// readNextAsync callbacks may complete in any order (e.g. with partitioned topic); collect all 10 then
118+
// verify set
118119
std::string received[10];
119120
std::atomic<int> receivedCount{0};
120121
for (int i = 0; i < 10; i++) {
@@ -125,7 +126,8 @@ TEST_P(ReaderTest, testAsyncRead) {
125126
});
126127
}
127128

128-
waitUntil(std::chrono::seconds(5), [&]() { return receivedCount.load() == 10; }, 1000);
129+
waitUntil(
130+
std::chrono::seconds(5), [&]() { return receivedCount.load() == 10; }, 1000);
129131
ASSERT_EQ(10, receivedCount.load()) << "Expected 10 messages";
130132

131133
std::set<std::string> receivedSet(received, received + 10);

0 commit comments

Comments
 (0)