Skip to content

Commit

Permalink
code review: fix some messages
Browse files Browse the repository at this point in the history
  • Loading branch information
raman-m committed Oct 12, 2023
1 parent 648d066 commit 9e626a9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/Ocelot.IntegrationTests/AdministrationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ private static void GivenThereIsAConfiguration(FileConfiguration fileConfigurati

File.WriteAllText(configurationPath, jsonConfiguration);

var text = File.ReadAllText(configurationPath);
_ = File.ReadAllText(configurationPath);

configurationPath = $"{AppContext.BaseDirectory}/ocelot.json";

Expand All @@ -865,7 +865,7 @@ private static void GivenThereIsAConfiguration(FileConfiguration fileConfigurati

File.WriteAllText(configurationPath, jsonConfiguration);

text = File.ReadAllText(configurationPath);
_ = File.ReadAllText(configurationPath);
}

private void WhenIGetUrlOnTheApiGateway(string url)
Expand Down Expand Up @@ -904,6 +904,7 @@ public void Dispose()
_builder?.Dispose();
_httpClient?.Dispose();
_identityServerBuilder?.Dispose();
GC.SuppressFinalize(this);
}

private void GivenThereIsAFooServiceRunningOn(string baseUrl)
Expand Down

0 comments on commit 9e626a9

Please sign in to comment.