Rename IResponse<T> to IApiResponse

This commit is contained in:
Haacked
2015-01-01 19:33:25 -08:00
parent 49f95d40f1
commit 09d5c236a4
24 changed files with 120 additions and 121 deletions
@@ -15,7 +15,7 @@ namespace Octokit.Tests.Models
public async Task ReturnsTheNextPage()
{
var nextPageUrl = new Uri("https://example.com/page/2");
var nextPageResponse = Task.Factory.StartNew<IResponse<List<object>>>(() =>
var nextPageResponse = Task.Factory.StartNew<IApiResponse<List<object>>>(() =>
new ApiResponse<List<object>> {BodyAsObject = new List<object> {new object(), new object()}});
var links = new Dictionary<string, Uri> {{"next", nextPageUrl}};
var scopes = new List<string>();