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
@@ -417,7 +417,7 @@ namespace Octokit.Tests.Integration.Clients
Assert.NotNull(forkCreated);
Assert.Equal(string.Format("{0}/octokit.net", Helper.UserName), forkCreated.FullName);
Assert.Equal(true, forkCreated.Fork);
Assert.True(forkCreated.Fork);
}
[IntegrationTest]
@@ -434,7 +434,7 @@ namespace Octokit.Tests.Integration.Clients
Assert.NotNull(forkCreated);
Assert.Equal(string.Format("{0}/octokit.net", Helper.UserName), forkCreated.FullName);
Assert.Equal(true, forkCreated.Fork);
Assert.True(forkCreated.Fork);
}
[OrganizationTest]
@@ -451,7 +451,7 @@ namespace Octokit.Tests.Integration.Clients
Assert.NotNull(forkCreated);
Assert.Equal(string.Format("{0}/octokit.net", Helper.Organization), forkCreated.FullName);
Assert.Equal(true, forkCreated.Fork);
Assert.True(forkCreated.Fork);
}
[OrganizationTest]
@@ -468,7 +468,7 @@ namespace Octokit.Tests.Integration.Clients
Assert.NotNull(forkCreated);
Assert.Equal(string.Format("{0}/octokit.net", Helper.Organization), forkCreated.FullName);
Assert.Equal(true, forkCreated.Fork);
Assert.True(forkCreated.Fork);
}
}
}