Corrected TheUpdateMethod.EnsureArgumentsNotNull()

This commit is contained in:
Prayank Mathur
2016-03-17 11:55:44 +05:30
parent f354d1bf00
commit db8738b675
23 changed files with 47 additions and 46 deletions
@@ -95,7 +95,7 @@ namespace Octokit.Tests.Integration.Clients
Assert.NotNull(token);
Assert.True(
token.Scopes.Count() == 1 &&
token.Scopes.Count() == 1 &&
token.Scopes.All(s => s == "public_repo"));
// Delete Impersonation token
@@ -187,7 +187,7 @@ namespace Octokit.Tests.Integration.Clients
{
// Ensure user has a key
//var key = await _github.User.Keys.Create(new NewPublicKey("title", "key"));
// Delete key
//await _github.User.Administration.DeletePublicKey(key.Id);
}