Skip to content

Commit

Permalink
chore: remove troubleshooting help leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
aleks-f committed Jun 17, 2021
1 parent 8c31d76 commit 2740068
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Net/testsuite/src/SocketReactorTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ void SocketReactorTest::testDataCollection()
" \"ts\":\"1524864651000001\","
" \"data\":123"
"}\n");
int n = sock.sendBytes(data0.data(), static_cast<int>(data0.size()));
sock.sendBytes(data0.data(), static_cast<int>(data0.size()));
std::string data1("{"
" \"src\":\"127.0.0.1\","
" \"id\":\"test1\","
Expand All @@ -520,7 +520,7 @@ void SocketReactorTest::testDataCollection()
" }"
" ]"
"}\n");
n = sock.sendBytes(data1.data(), static_cast<int>(data1.size()));
sock.sendBytes(data1.data(), static_cast<int>(data1.size()));
std::string data2 = "{"
" \"src\":\"127.0.0.1\","
" \"id\":\"test2\","
Expand Down Expand Up @@ -557,7 +557,7 @@ void SocketReactorTest::testDataCollection()
" }"
" ]"
"}\n";
n = sock.sendBytes(data2.data(), static_cast<int>(data2.size()));
sock.sendBytes(data2.data(), static_cast<int>(data2.size()));
Thread::sleep(500);
reactor.stop();
thread.join();
Expand Down

0 comments on commit 2740068

Please sign in to comment.