mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-17 07:13:27 +02:00
chore: remove troubleshooting help leftovers
This commit is contained in:
parent
8c31d76e2b
commit
2740068e59
@ -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\","
|
||||
@ -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\","
|
||||
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user