diff --git a/Octokit.Tests/Clients/PullRequestsClientTests.cs b/Octokit.Tests/Clients/PullRequestsClientTests.cs index 6a98ff1e..8864231e 100644 --- a/Octokit.Tests/Clients/PullRequestsClientTests.cs +++ b/Octokit.Tests/Clients/PullRequestsClientTests.cs @@ -202,7 +202,7 @@ namespace Octokit.Tests.Clients client.Commits("fake", "repo", 42); - connection.Received().GetAll(Arg.Is(u => u.ToString() == "repos/fake/repo/pulls/42/commits")); + connection.Received().GetAll(Arg.Is(u => u.ToString() == "repos/fake/repo/pulls/42/commits")); } [Fact] diff --git a/Octokit.Tests/Reactive/ObservablePullRequestsClientTests.cs b/Octokit.Tests/Reactive/ObservablePullRequestsClientTests.cs index 2e77d68f..80dd030f 100644 --- a/Octokit.Tests/Reactive/ObservablePullRequestsClientTests.cs +++ b/Octokit.Tests/Reactive/ObservablePullRequestsClientTests.cs @@ -285,7 +285,7 @@ namespace Octokit.Tests.Reactive client.Commits("fake", "repo", 42); - connection.Received().GetAsync>(new Uri(expectedUrl, UriKind.Relative), null, null); + connection.Received().GetAsync>(new Uri(expectedUrl, UriKind.Relative), null, null); } [Fact]