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";
_port = 8500;
_consulHost = "localhost";
_consulScheme = "https";
_fakeConsulServiceDiscoveryUrl = $"http://{_consulHost}:{_port}";
_consulScheme = "http";
_fakeConsulServiceDiscoveryUrl = $"{_consulScheme}://{_consulHost}:{_port}";
_serviceEntries = new List<ServiceEntry>();
_factory = new Mock<IOcelotLoggerFactory>();
_clientFactory = new ConsulClientFactory();