File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/JsonApiDotNetCoreTests/IntegrationTests/Meta Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
265
265
266
266
await _testContext . RunOnDatabaseAsync ( async dbContext =>
267
267
{
268
- SupportTicket ? supportTicketInDatabase = await dbContext . SupportTickets . Include ( supportTicket => supportTicket . ProductFamily )
268
+ SupportTicket supportTicketInDatabase = await dbContext . SupportTickets . Include ( supportTicket => supportTicket . ProductFamily )
269
269
. FirstAsync ( supportTicket => supportTicket . Id == existingTicket . Id ) ;
270
270
271
271
supportTicketInDatabase . ProductFamily . Should ( ) . BeNull ( ) ;
@@ -673,7 +673,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
673
673
// Act
674
674
( HttpResponseMessage httpResponse , _ ) = await _testContext . ExecutePostAtomicAsync < Document > ( route , requestBody ) ;
675
675
676
- // Assert
676
+ // Assert
677
677
httpResponse . ShouldHaveStatusCode ( HttpStatusCode . NoContent ) ;
678
678
679
679
store . Document . Should ( ) . NotBeNull ( ) ;
@@ -688,7 +688,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
688
688
689
689
await _testContext . RunOnDatabaseAsync ( async dbContext =>
690
690
{
691
- SupportTicket ? supportTicketInDatabase = await dbContext . SupportTickets . Include ( supportTicket => supportTicket . ProductFamily )
691
+ SupportTicket supportTicketInDatabase = await dbContext . SupportTickets . Include ( supportTicket => supportTicket . ProductFamily )
692
692
. FirstAsync ( supportTicket => supportTicket . Id == existingTicket . Id ) ;
693
693
694
694
supportTicketInDatabase . ProductFamily . Should ( ) . BeNull ( ) ;
You can’t perform that action at this time.
0 commit comments