Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementKunz committed Mar 26, 2024
1 parent cf609dd commit 9c53f9c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions test/libsyncengine/jobs/testjobmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ void sendTestRequest(Poco::Net::HTTPSClientSession &session, const bool resetSes

std::cout << "receiving response" << std::endl;
Poco::Net::HTTPResponse response;
std::istream& rs = session.receiveResponse(response);
session.receiveResponse(response);

std::cout << "socket connected: " << connected << std::endl;
std::cout << "session connected: " << session.connected() << std::endl;
Expand Down Expand Up @@ -394,8 +394,6 @@ void TestJobManager::testReuseSocket()
CPPUNIT_ASSERT(!session.socket().impl()->initialized());
sendTestRequest(session, true); // Doing twice, so we can see in console that the socket is not connected anymore
CPPUNIT_ASSERT(!session.socket().impl()->initialized());


}

} // namespace KDC

0 comments on commit 9c53f9c

Please sign in to comment.