Unused commented test has been removed.

This commit is contained in:
aedampir@gmail.com
2016-03-16 12:20:01 +07:00
parent 833767cde4
commit a1341c99be

View File

@@ -54,28 +54,5 @@ namespace Octokit.Tests.Integration
Assert.Equal(0, emails.Count);
}
//[IntegrationTest]
//public async Task ReturnsDistinctResultsBasedOnStartPage()
//{
// var startOptions = new ApiOptions
// {
// PageSize = 5,
// PageCount = 1
// };
// var firstPage = await _emailClient.GetAll(startOptions);
// var skipStartOptions = new ApiOptions
// {
// PageSize = 5,
// PageCount = 1,
// StartPage = 2
// };
// var secondPage = await _emailClient.GetAll(skipStartOptions);
// Assert.Equal(firstPage[0].Email, secondPage[0].Email);
//}
}
}