Another place that hardcodes the URI.

This commit is contained in:
Jan Holesovsky 2016-05-04 13:56:39 +02:00
parent f40167cd6e
commit 68ed15628d

View file

@ -88,11 +88,7 @@ class TileCacheTests : public CPPUNIT_NS::TestFixture
public:
TileCacheTests()
#if ENABLE_SSL
: _uri("https://127.0.0.1:" + std::to_string(DEFAULT_CLIENT_PORT_NUMBER))
#else
: _uri("http://127.0.0.1:" + std::to_string(DEFAULT_CLIENT_PORT_NUMBER))
#endif
: _uri(helpers::getTestServerURI())
{
#if ENABLE_SSL
Poco::Net::initializeSSL();