Skip to content

Commit 06f0c90

Browse files
author
Bart Koelman
committed
Minor formatting consistency
1 parent bfaca70 commit 06f0c90

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

test/JsonApiDotNetCoreExampleTests/IntegrationTests/QueryStrings/Pagination/PaginationWithoutTotalCountTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ public PaginationWithoutTotalCountTests(ExampleIntegrationTestContext<TestableSt
2626
_testContext = testContext;
2727

2828
var options = (JsonApiOptions)testContext.Factory.Services.GetRequiredService<IJsonApiOptions>();
29-
3029
options.IncludeTotalResourceCount = false;
3130
options.DefaultPageSize = new PageSize(DefaultPageSize);
3231
options.AllowUnknownQueryStringParameters = true;

test/JsonApiDotNetCoreExampleTests/IntegrationTests/ResourceHooks/ResourceHookTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public ResourceHookTests(ExampleIntegrationTestContext<ResourceHooksStartup<AppD
4040
services.AddScoped(typeof(IResourceChangeTracker<>), typeof(NeverSameResourceChangeTracker<>));
4141
});
4242

43-
var options = (JsonApiOptions)_testContext.Factory.Services.GetRequiredService<IJsonApiOptions>();
43+
var options = (JsonApiOptions)testContext.Factory.Services.GetRequiredService<IJsonApiOptions>();
4444
options.DisableTopPagination = false;
4545
options.DisableChildrenPagination = false;
4646
}

0 commit comments

Comments
 (0)