Skip to content

Commit

Permalink
fix(tests): remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
obiltschnig committed Feb 7, 2025
1 parent 6fb0deb commit 3d8040b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion Net/testsuite/src/SocketTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,6 @@ void SocketTest::testSendFile()

Poco::FileInputStream istr(file.path());
std::streamsize sent = 0;
std::streamoff off = 0;
while (sent < file.getSize())
{
sent += ss.sendFile(istr, sent);
Expand Down
1 change: 0 additions & 1 deletion NetSSL_OpenSSL/testsuite/src/SecureStreamSocketTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ void SecureStreamSocketTest::testSendFile()

Poco::FileInputStream istr(file.path());
std::streamsize sent = 0;
std::streamoff off = 0;
while (sent < file.getSize())
{
sent += ss.sendFile(istr, sent);
Expand Down

0 comments on commit 3d8040b

Please sign in to comment.