@@ -90,10 +90,10 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
9090 string route = $ "/supportTickets/{ existingTicket . StringId } ";
9191
9292 // Act
93- ( HttpResponseMessage response , _ ) = await _testContext . ExecutePatchAsync < Document > ( route , requestBody ) ;
93+ ( HttpResponseMessage httpResponse , _ ) = await _testContext . ExecutePatchAsync < Document > ( route , requestBody ) ;
9494
9595 // Assert
96- response . ShouldHaveStatusCode ( HttpStatusCode . NoContent ) ;
96+ httpResponse . ShouldHaveStatusCode ( HttpStatusCode . NoContent ) ;
9797
9898 store . Document . Should ( ) . NotBeNull ( ) ;
9999
@@ -176,10 +176,10 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
176176 string route = $ "/productFamilies/{ existingFamily . StringId } ";
177177
178178 // Act
179- ( HttpResponseMessage response , _ ) = await _testContext . ExecutePatchAsync < Document > ( route , requestBody ) ;
179+ ( HttpResponseMessage httpResponse , _ ) = await _testContext . ExecutePatchAsync < Document > ( route , requestBody ) ;
180180
181181 // Assert
182- response . ShouldHaveStatusCode ( HttpStatusCode . NoContent ) ;
182+ httpResponse . ShouldHaveStatusCode ( HttpStatusCode . NoContent ) ;
183183
184184 store . Document . Should ( ) . NotBeNull ( ) ;
185185
@@ -189,8 +189,6 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
189189
190190 store . Document . Data . SingleValue . Meta . Should ( ) . BeEquivalentToJson ( resourceMeta ) ;
191191
192- store . Document . Data . SingleValue . Relationships . Should ( ) . NotBeNull ( ) ;
193-
194192 store . Document . Data . SingleValue . Relationships . Should ( ) . ContainKey ( "tickets" ) . WhoseValue . With ( value =>
195193 {
196194 value . Should ( ) . NotBeNull ( ) ;
@@ -265,8 +263,6 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
265263
266264 store . Document . Data . SingleValue . Meta . Should ( ) . BeEquivalentToJson ( resourceMeta ) ;
267265
268- store . Document . Data . SingleValue . Relationships . Should ( ) . NotBeNull ( ) ;
269-
270266 store . Document . Data . SingleValue . Relationships . Should ( ) . ContainKey ( "productFamily" ) . WhoseValue . With ( value =>
271267 {
272268 value . Should ( ) . NotBeNull ( ) ;
@@ -352,8 +348,6 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
352348 store . Document . Data . SingleValue . Should ( ) . NotBeNull ( ) ;
353349 store . Document . Data . SingleValue . Meta . Should ( ) . BeEquivalentToJson ( resourceMeta ) ;
354350
355- store . Document . Data . SingleValue . Relationships . Should ( ) . NotBeNull ( ) ;
356-
357351 store . Document . Data . SingleValue . Relationships . Should ( ) . ContainKey ( "tickets" ) . WhoseValue . With ( value =>
358352 {
359353 value . Should ( ) . NotBeNull ( ) ;
0 commit comments