Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ggjulio committed Aug 25, 2021
1 parent b922ed0 commit fe7b3c9
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions tests/src/TestsHttpRequest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,6 @@ TEST_CASE( "HttpRequest::read simple get, cut in two read - loop", "[class][Http
std::string two = data.substr(idx);
CHECK( one + two == data);


req.read(one.c_str());
CHECK( req.isComplete() == false);
CHECK( req.getHttpErrorCode() == 0);
Expand All @@ -259,13 +258,6 @@ TEST_CASE( "HttpRequest::read simple get, cut in two read - loop", "[class][Http

CHECK( req.getContent() == "Test");

req.clear();
CHECK( req.getMethod().empty() );
CHECK( req.getContentLength() == 0 );
CHECK( req.getUri().empty());

CHECK( req.getHeaders().size() == 0);
CHECK( req.getContent().empty());
}
}

Expand Down

0 comments on commit fe7b3c9

Please sign in to comment.