mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 11:40:42 +00:00
aaaand format the code
This commit is contained in:
@@ -45,7 +45,7 @@ namespace Octokit.Tests.Reactive
|
||||
{
|
||||
var firstPageUrl = new Uri("repos/fake/repo/milestones", UriKind.Relative);
|
||||
var secondPageUrl = new Uri("https://example.com/page/2");
|
||||
var firstPageLinks = new Dictionary<string, Uri> {{"next", secondPageUrl}};
|
||||
var firstPageLinks = new Dictionary<string, Uri> { { "next", secondPageUrl } };
|
||||
var firstPageResponse = new ApiResponse<List<Milestone>>
|
||||
(
|
||||
CreateResponseWithApiInfo(firstPageLinks),
|
||||
@@ -57,7 +57,7 @@ namespace Octokit.Tests.Reactive
|
||||
}
|
||||
);
|
||||
var thirdPageUrl = new Uri("https://example.com/page/3");
|
||||
var secondPageLinks = new Dictionary<string, Uri> {{"next", thirdPageUrl}};
|
||||
var secondPageLinks = new Dictionary<string, Uri> { { "next", thirdPageUrl } };
|
||||
var secondPageResponse = new ApiResponse<List<Milestone>>
|
||||
(
|
||||
CreateResponseWithApiInfo(secondPageLinks),
|
||||
@@ -98,7 +98,7 @@ namespace Octokit.Tests.Reactive
|
||||
{
|
||||
var firstPageUrl = new Uri("repos/fake/repo/milestones", UriKind.Relative);
|
||||
var secondPageUrl = new Uri("https://example.com/page/2");
|
||||
var firstPageLinks = new Dictionary<string, Uri> {{"next", secondPageUrl}};
|
||||
var firstPageLinks = new Dictionary<string, Uri> { { "next", secondPageUrl } };
|
||||
var firstPageResponse = new ApiResponse<List<Milestone>>
|
||||
(
|
||||
CreateResponseWithApiInfo(firstPageLinks),
|
||||
@@ -110,7 +110,7 @@ namespace Octokit.Tests.Reactive
|
||||
}
|
||||
);
|
||||
var thirdPageUrl = new Uri("https://example.com/page/3");
|
||||
var secondPageLinks = new Dictionary<string, Uri> {{"next", thirdPageUrl}};
|
||||
var secondPageLinks = new Dictionary<string, Uri> { { "next", thirdPageUrl } };
|
||||
var secondPageResponse = new ApiResponse<List<Milestone>>
|
||||
(
|
||||
CreateResponseWithApiInfo(secondPageLinks),
|
||||
|
||||
Reference in New Issue
Block a user