unittest + compiler warnings

This commit is contained in:
Benjamin Sergeant
2019-01-05 21:10:08 -08:00
parent 4d587e35d8
commit cc8a9e883e
3 changed files with 6 additions and 6 deletions

View File

@ -42,7 +42,7 @@ namespace ix
std::cout << "Sending request: " << request
<< "to " << host << ":" << port
<< std::endl;
socket->writeBytes(request, isCancellationRequested);
REQUIRE(socket->writeBytes(request, isCancellationRequested));
auto lineResult = socket->readLine(isCancellationRequested);
auto lineValid = lineResult.first;