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 =>
265265
266266 await _testContext . RunOnDatabaseAsync ( async dbContext =>
267267 {
268- SupportTicket ? supportTicketInDatabase = await dbContext . SupportTickets . Include ( supportTicket => supportTicket . ProductFamily )
268+ SupportTicket supportTicketInDatabase = await dbContext . SupportTickets . Include ( supportTicket => supportTicket . ProductFamily )
269269 . FirstAsync ( supportTicket => supportTicket . Id == existingTicket . Id ) ;
270270
271271 supportTicketInDatabase . ProductFamily . Should ( ) . BeNull ( ) ;
@@ -673,7 +673,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
673673 // Act
674674 ( HttpResponseMessage httpResponse , _ ) = await _testContext . ExecutePostAtomicAsync < Document > ( route , requestBody ) ;
675675
676- // Assert
676+ // Assert
677677 httpResponse . ShouldHaveStatusCode ( HttpStatusCode . NoContent ) ;
678678
679679 store . Document . Should ( ) . NotBeNull ( ) ;
@@ -688,7 +688,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
688688
689689 await _testContext . RunOnDatabaseAsync ( async dbContext =>
690690 {
691- SupportTicket ? supportTicketInDatabase = await dbContext . SupportTickets . Include ( supportTicket => supportTicket . ProductFamily )
691+ SupportTicket supportTicketInDatabase = await dbContext . SupportTickets . Include ( supportTicket => supportTicket . ProductFamily )
692692 . FirstAsync ( supportTicket => supportTicket . Id == existingTicket . Id ) ;
693693
694694 supportTicketInDatabase . ProductFamily . Should ( ) . BeNull ( ) ;
You can’t perform that action at this time.
0 commit comments