Fix remaining CS0649 violations

This commit is contained in:
Philip Wood
2018-03-06 11:13:02 +00:00
parent b8e95373a4
commit ea95690253
2 changed files with 2 additions and 7 deletions

View File

@ -18,7 +18,6 @@ namespace Ocelot.AcceptanceTests
{
private IWebHost _builder;
private readonly Steps _steps;
private string _downstreamPath;
public HeaderTests()
{
@ -237,11 +236,6 @@ namespace Ocelot.AcceptanceTests
_builder.Start();
}
internal void ThenTheDownstreamUrlPathShouldBe(string expectedDownstreamPath)
{
_downstreamPath.ShouldBe(expectedDownstreamPath);
}
public void Dispose()
{
_builder?.Dispose();