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

View File

@@ -19,7 +19,7 @@ namespace Octokit.Tests.Reactive
client.Create(new NewUser("auser", "email@company.com"));
gitHubClient.User.Administration.Received().Create(
Arg.Is<NewUser>(a =>
Arg.Is<NewUser>(a =>
a.Login == "auser" &&
a.Email == "email@company.com"));
}