File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments