mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-06-20 06:18:15 +08:00
removed some async we dont need
This commit is contained in:
@ -79,7 +79,7 @@ namespace Ocelot.UnitTests.DownstreamRouteFinder
|
||||
_config = config;
|
||||
_provider
|
||||
.Setup(x => x.Get())
|
||||
.ReturnsAsync(new OkResponse<IOcelotConfiguration>(_config));
|
||||
.Returns(new OkResponse<IOcelotConfiguration>(_config));
|
||||
}
|
||||
|
||||
private void GivenTheDownStreamRouteFinderReturns(DownstreamRoute downstreamRoute)
|
||||
|
Reference in New Issue
Block a user