summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Network/UnitTest/HTTPConnectProxiedConnectionTest.cpp')
-rw-r--r--Swiften/Network/UnitTest/HTTPConnectProxiedConnectionTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Swiften/Network/UnitTest/HTTPConnectProxiedConnectionTest.cpp b/Swiften/Network/UnitTest/HTTPConnectProxiedConnectionTest.cpp
index 065d015..e9268b0 100644
--- a/Swiften/Network/UnitTest/HTTPConnectProxiedConnectionTest.cpp
+++ b/Swiften/Network/UnitTest/HTTPConnectProxiedConnectionTest.cpp
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2010-2018 Isode Limited. 2 * Copyright (c) 2010-2019 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
@@ -37,7 +37,7 @@ namespace {
37 37
38 virtual std::vector<std::pair<std::string, std::string> > filterHTTPResponseHeader(const std::string& /* statusLine */, const std::vector<std::pair<std::string, std::string> >& response) { 38 virtual std::vector<std::pair<std::string, std::string> > filterHTTPResponseHeader(const std::string& /* statusLine */, const std::vector<std::pair<std::string, std::string> >& response) {
39 filterResponses.push_back(response); 39 filterResponses.push_back(response);
40 SWIFT_LOG(debug) << std::endl; 40 SWIFT_LOG(debug);
41 return filterResponseReturn; 41 return filterResponseReturn;
42 } 42 }
43 43
@@ -409,7 +409,7 @@ class HTTPConnectProxiedConnectionTest : public CppUnit::TestFixture {
409 std::shared_ptr<Connection> createConnection() { 409 std::shared_ptr<Connection> createConnection() {
410 std::shared_ptr<MockConnection> connection = std::make_shared<MockConnection>(failingPorts, eventLoop); 410 std::shared_ptr<MockConnection> connection = std::make_shared<MockConnection>(failingPorts, eventLoop);
411 connections.push_back(connection); 411 connections.push_back(connection);
412 SWIFT_LOG(debug) << "new connection created" << std::endl; 412 SWIFT_LOG(debug) << "new connection created";
413 return connection; 413 return connection;
414 } 414 }
415 415