Merge pull request #1087 from octokit/fix-the-build

fixing the build
This commit is contained in:
Brendan Forster
2016-02-03 12:22:00 +10:30
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -69,8 +69,7 @@ namespace Octokit.Tests.Clients
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]
@@ -76,7 +76,7 @@ namespace Octokit.Tests.Reactive
client.GetLatest("fake", "repo");
gitHubClient.Release.Received(1).GetLatest("fake", "repo");
gitHubClient.Repository.Release.Received(1).GetLatest("fake", "repo");
}
[Fact]