More jacked up tests

This commit is contained in:
Paul Betts
2014-04-30 21:47:34 -07:00
parent 8c5249894a
commit d731f1bd97
16 changed files with 74 additions and 74 deletions
@@ -23,7 +23,7 @@ namespace Octokit.Tests.Reactive
client.GetAll("org");
gitHubClient.Connection.Received(1).GetAsync<List<User>>(
gitHubClient.Connection.Received(1).Get<List<User>>(
new Uri("orgs/org/members", UriKind.Relative), null, null);
}
@@ -47,7 +47,7 @@ namespace Octokit.Tests.Reactive
client.GetPublic("org");
gitHubClient.Connection.Received(1).GetAsync<List<User>>(
gitHubClient.Connection.Received(1).Get<List<User>>(
new Uri("orgs/org/public_members", UriKind.Relative), null, null);
}