diff --git a/Octokit.Tests.Integration/Helpers/Audit/Section.cs b/Octokit.Tests.Integration/Helpers/Audit/Section.cs index ac9fb84e..b2856663 100644 --- a/Octokit.Tests.Integration/Helpers/Audit/Section.cs +++ b/Octokit.Tests.Integration/Helpers/Audit/Section.cs @@ -6,8 +6,8 @@ namespace Octokit.Tests.Integration { public class Section { - public string route; - public string url; + public string Route { get; private set; } + public string Url { get; private set; } readonly IEnumerable endpoints; @@ -15,8 +15,8 @@ namespace Octokit.Tests.Integration public Section(string route, string url) { - this.route = route; - this.url = url; + this.Route = route; + this.Url = url; endpoints = WebsiteScraper.FindEndpointsAtUrl(url); } @@ -101,7 +101,7 @@ namespace Octokit.Tests.Integration public IEnumerable Validate() { - if (reportedIssues.ContainsKey(route)) + if (reportedIssues.ContainsKey(Route)) { // don't validate routes with known issues return Enumerable.Empty(); @@ -116,13 +116,13 @@ namespace Octokit.Tests.Integration Type clientType; - if (manualMappings.ContainsKey(route)) + if (manualMappings.ContainsKey(Route)) { - clientType = manualMappings[route]; + clientType = manualMappings[Route]; } else { - var tuple = ResolveFromRoot(route); + var tuple = ResolveFromRoot(Route); if (tuple.Item1.Any()) {