autofix tests based on feedback from xunit analyzers (#1997)

This commit is contained in:
Brendan Forster
2019-09-16 19:46:40 -03:00
committed by GitHub
parent 61bd1d1018
commit 45bc5eced7
50 changed files with 222 additions and 232 deletions
@@ -32,7 +32,7 @@ public class SearchClientTests
};
var repos = await _gitHubClient.Search.SearchRepo(request);
Assert.True(repos.Items.Any(x => x.Fork));
Assert.Contains(repos.Items, x => x.Fork);
}
[IntegrationTest]
@@ -112,7 +112,7 @@ public class SearchClientTests
foreach (var code in searchResults.Items)
{
Assert.True(code.Name.EndsWith(".cs"));
Assert.EndsWith(".cs", code.Name);
}
}