File tree 1 file changed +5
-5
lines changed
test/JsonApiDotNetCoreTests/IntegrationTests/QueryStrings/Filtering
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -817,9 +817,9 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
817
817
public async Task Can_filter_on_has_with_nested_condition ( )
818
818
{
819
819
// Arrange
820
- var resources = new List < FilterableResource >
821
- {
822
- new ( )
820
+ List < FilterableResource > resources =
821
+ [
822
+ new FilterableResource
823
823
{
824
824
Children = new List < FilterableResource >
825
825
{
@@ -829,7 +829,7 @@ public async Task Can_filter_on_has_with_nested_condition()
829
829
}
830
830
}
831
831
} ,
832
- new ( )
832
+ new FilterableResource
833
833
{
834
834
Children = new List < FilterableResource >
835
835
{
@@ -839,7 +839,7 @@ public async Task Can_filter_on_has_with_nested_condition()
839
839
}
840
840
}
841
841
}
842
- } ;
842
+ ] ;
843
843
844
844
await _testContext . RunOnDatabaseAsync ( async dbContext =>
845
845
{
You can’t perform that action at this time.
0 commit comments