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
@@ -47,7 +47,7 @@ namespace Octokit.Tests.Reactive
client.GetForRepository("fake", "repo");
gitHubClient.Connection.Received(1).GetAsync<List<IssueComment>>(
gitHubClient.Connection.Received(1).Get<List<IssueComment>>(
new Uri("repos/fake/repo/issues/comments", UriKind.Relative), null, null);
}
@@ -74,7 +74,7 @@ namespace Octokit.Tests.Reactive
client.GetForIssue("fake", "repo", 3);
gitHubClient.Connection.Received(1).GetAsync<List<IssueComment>>(
gitHubClient.Connection.Received(1).Get<List<IssueComment>>(
new Uri("repos/fake/repo/issues/3/comments", UriKind.Relative), null, null);
}