File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
test/JsonApiDotNetCoreTests/IntegrationTests/ResourceInheritance Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -160,9 +160,6 @@ dotnet_diagnostic.JSON002.severity = silent
160160# CA1062: Validate arguments of public methods
161161dotnet_code_quality.CA1062.excluded_symbol_names = Accept|DefaultVisit|Visit*|Apply*
162162
163- # Turn off crashing analyzer, https://github.com/dotnet/roslyn-analyzers/issues/7421
164- dotnet_diagnostic.CA2263.severity = none
165-
166163# ### .NET Naming Style ####
167164
168165dotnet_diagnostic.IDE1006.severity = warning
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ internal void AssertLeftType<TLeft>()
2929 Request . ShouldNotBeNull ( ) ;
3030 Request . PrimaryResourceType . ShouldNotBeNull ( ) ;
3131 Request . PrimaryResourceType . ClrType . Should ( ) . Be < TLeft > ( ) ;
32- Request . Relationship ? . LeftType . ClrType . Should ( ) . Be ( typeof ( TLeft ) ) ;
32+ Request . Relationship ? . LeftType . ClrType . Should ( ) . Be < TLeft > ( ) ;
3333 }
3434
3535 internal void AssertRightTypes ( params Type [ ] types )
You can’t perform that action at this time.
0 commit comments