upgrade to latest beta

This commit is contained in:
Brendan Forster
2014-12-14 21:15:06 +09:30
parent 8f48f68fab
commit 23186f08ee
+2 -2
View File
@@ -99,7 +99,7 @@ namespace Octokit.Tests
public class ThePageUrlMethods
{
[Theory]
[PropertyData("PagingMethods")]
[MemberData("PagingMethods")]
public void RetrievesTheCorrectPagePage(string linkName, Func<ApiInfo, Uri> pagingMethod)
{
var pageUri = new Uri("https://api.github.com/user/repos?page=2");
@@ -113,7 +113,7 @@ namespace Octokit.Tests
}
[Theory]
[PropertyData("PagingMethods")]
[MemberData("PagingMethods")]
public void ReturnsNullIfThereIsNoMatchingPagingLink(string ignored, Func<ApiInfo, Uri> pagingMethod)
{
var links = new Dictionary<string, Uri>();