Skip to content

Commit 40bab67

Browse files
committed
Since I removed the include directory in a previous commit, I have now updated all the tests.
1 parent 047d89c commit 40bab67

10 files changed

+11
-11
lines changed

libs/network/test/http/client_get_different_port_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://www.boost.org/LICENSE_1_0.txt)
77

88
#include <gtest/gtest.h>
9-
#include <boost/network/include/http/client.hpp>
9+
#include <boost/network/protocol/http/client.hpp>
1010
#include "client_types.hpp"
1111

1212
namespace net = boost::network;

libs/network/test/http/client_get_streaming_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// http://www.boost.org/LICENSE_1_0.txt)
66

77
#include <gtest/gtest.h>
8-
#include <boost/network/include/http/client.hpp>
8+
#include <boost/network/protocol/http/client.hpp>
99
#include <iostream>
1010
#include "client_types.hpp"
1111

libs/network/test/http/client_get_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
// http://www.boost.org/LICENSE_1_0.txt)
55

66
#include <gtest/gtest.h>
7-
#include <boost/network/include/http/client.hpp>
7+
#include <boost/network/protocol/http/client.hpp>
88
#include "client_types.hpp"
99

1010
namespace net = boost::network;

libs/network/test/http/client_get_timeout_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#include <gtest/gtest.h>
99
#include <cstdlib>
10-
#include <boost/network/include/http/client.hpp>
10+
#include <boost/network/protocol/http/client.hpp>
1111
#include "client_types.hpp"
1212
#include "http_test_server.hpp"
1313

libs/network/test/http/client_localhost_normal_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <gtest/gtest.h>
1111
#include <boost/config/warning_disable.hpp>
1212
#include <boost/config.hpp>
13-
#include <boost/network/include/http/client.hpp>
13+
#include <boost/network/protocol/http/client.hpp>
1414
#include <boost/range.hpp>
1515
#include <boost/cast.hpp>
1616
#include <string>

libs/network/test/http/client_types.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#include <gtest/gtest.h>
1111
#include <tuple>
1212
#include "tag_types.hpp"
13-
#include <boost/network/include/http/client.hpp>
13+
#include <boost/network/protocol/http/client.hpp>
1414

1515
// HTTPClientTest is a re-usable fixture for client tests that need to test
1616
// various variations of the client. This is to be used with googletest's
@@ -22,7 +22,7 @@
2222
//
2323
// We also already provide ClientTypes as a convenience in this header for all
2424
// known and supported client type implementations in the library.
25-
//
25+
//
2626
// T must be a tuple in the form: <tag, http version major, http version minor>.
2727
template <class T>
2828
class HTTPClientTest : public ::testing::Test {

libs/network/test/http/message_async_ready_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// http://www.boost.org/LICENSE_1_0.txt)
77

88
#include <gtest/gtest.h>
9-
#include <boost/network/include/http/client.hpp>
9+
#include <boost/network/protocol/http/client.hpp>
1010
#include "tag_types.hpp"
1111

1212
namespace http = boost::network::http;

libs/network/test/http/server_async_run_stop_concurrency.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#include <thread>
22
#include <chrono>
3-
#include <boost/network/include/http/server.hpp>
3+
#include <boost/network/protocol/http/server.hpp>
44

55
namespace http = boost::network::http;
66
namespace util = boost::network::utils;

libs/network/test/http/server_constructor_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
#include <memory>
99
#include <gtest/gtest.h>
10-
#include <boost/network/include/http/server.hpp>
10+
#include <boost/network/protocol/http/server.hpp>
1111

1212
namespace http = boost::network::http;
1313
namespace util = boost::network::utils;

libs/network/test/http_server_async_less_copy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#include <vector>
1010

1111
#include <boost/config/warning_disable.hpp>
12-
#include <boost/network/include/http/server.hpp>
12+
#include <boost/network/protocol/http/server.hpp>
1313
#include <boost/network/utils/thread_pool.hpp>
1414
#include <boost/range/algorithm/find_if.hpp>
1515

0 commit comments

Comments
 (0)