Fix tests that are failing on AppVeyor.

This commit is contained in:
David Lievrouw 2019-07-10 18:04:36 +02:00
parent cd3dc00c1a
commit bc42f041e4

View File

@ -38,8 +38,8 @@
_serviceName = "test"; _serviceName = "test";
_port = 8500; _port = 8500;
_consulHost = "localhost"; _consulHost = "localhost";
_consulScheme = "https"; _consulScheme = "http";
_fakeConsulServiceDiscoveryUrl = $"http://{_consulHost}:{_port}"; _fakeConsulServiceDiscoveryUrl = $"{_consulScheme}://{_consulHost}:{_port}";
_serviceEntries = new List<ServiceEntry>(); _serviceEntries = new List<ServiceEntry>();
_factory = new Mock<IOcelotLoggerFactory>(); _factory = new Mock<IOcelotLoggerFactory>();
_clientFactory = new ConsulClientFactory(); _clientFactory = new ConsulClientFactory();