mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 20:13:40 +00:00
More jacked up tests
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user