Skip to content

Commit

Permalink
Merge pull request #1087 from octokit/fix-the-build
Browse files Browse the repository at this point in the history
fixing the build
  • Loading branch information
shiftkey committed Feb 3, 2016
2 parents 7ca0140 + 5704b6a commit 478d15a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions Octokit.Tests/Clients/ReleasesClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ public void RequestsTheCorrectUrl()

client.GetLatest("fake", "repo");

connection.Received().Get<Release>(Arg.Is<Uri>(u => u.ToString() == "repos/fake/repo/releases/latest"),
null);
connection.Received().Get<Release>(Arg.Is<Uri>(u => u.ToString() == "repos/fake/repo/releases/latest"));
}

[Fact]
Expand Down
2 changes: 1 addition & 1 deletion Octokit.Tests/Reactive/ObservableReleasesClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void CallsIntoClient()

client.GetLatest("fake", "repo");

gitHubClient.Release.Received(1).GetLatest("fake", "repo");
gitHubClient.Repository.Release.Received(1).GetLatest("fake", "repo");
}

[Fact]
Expand Down

0 comments on commit 478d15a

Please sign in to comment.