Skip to content

Commit bc42f04

Browse files
author
David Lievrouw
committed
Fix tests that are failing on AppVeyor.
1 parent cd3dc00 commit bc42f04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Ocelot.UnitTests/Consul/ConsulServiceDiscoveryProviderTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ public ConsulServiceDiscoveryProviderTests()
3838
_serviceName = "test";
3939
_port = 8500;
4040
_consulHost = "localhost";
41-
_consulScheme = "https";
42-
_fakeConsulServiceDiscoveryUrl = $"http://{_consulHost}:{_port}";
41+
_consulScheme = "http";
42+
_fakeConsulServiceDiscoveryUrl = $"{_consulScheme}://{_consulHost}:{_port}";
4343
_serviceEntries = new List<ServiceEntry>();
4444
_factory = new Mock<IOcelotLoggerFactory>();
4545
_clientFactory = new ConsulClientFactory();

0 commit comments

Comments
 (0)