File tree 2 files changed +3
-3
lines changed
test/JsonApiDotNetCoreTests/IntegrationTests/ReadWrite
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,9 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
45
45
46
46
await _testContext . RunOnDatabaseAsync ( async dbContext =>
47
47
{
48
- WorkItem ? workItemsInDatabase = await dbContext . WorkItems . FirstWithIdOrDefaultAsync ( existingWorkItem . Id ) ;
48
+ WorkItem ? workItemInDatabase = await dbContext . WorkItems . FirstWithIdOrDefaultAsync ( existingWorkItem . Id ) ;
49
49
50
- workItemsInDatabase . Should ( ) . BeNull ( ) ;
50
+ workItemInDatabase . Should ( ) . BeNull ( ) ;
51
51
} ) ;
52
52
}
53
53
Original file line number Diff line number Diff line change @@ -230,7 +230,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
230
230
}
231
231
232
232
[ Fact ]
233
- public async Task Can_get_unknown_secondary_OneToMany_resource ( )
233
+ public async Task Can_get_unknown_secondary_OneToMany_resources ( )
234
234
{
235
235
// Arrange
236
236
UserAccount userAccount = _fakers . UserAccount . Generate ( ) ;
You can’t perform that action at this time.
0 commit comments