Skip to content

Commit 35e6533

Browse files
fix warnings
1 parent 8c306ef commit 35e6533

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/JsonApiDotNetCoreTests/IntegrationTests/Meta/RequestMetaTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
195195
}
196196

197197
[Fact]
198-
public async Task Accepts_meta_in_post_resource_request_with_to_one_relationship()
198+
public async Task Accepts_meta_in_add_resource_request_with_to_one_relationship()
199199
{
200200
// Arrange
201201
var store = _testContext.Factory.Services.GetRequiredService<RequestDocumentStore>();
@@ -271,7 +271,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
271271
}
272272

273273
[Fact]
274-
public async Task Accepts_meta_in_post_resource_request_with_to_many_relationship()
274+
public async Task Accepts_meta_in_add_resource_request_with_to_many_relationship()
275275
{
276276
// Arrange
277277
var store = _testContext.Factory.Services.GetRequiredService<RequestDocumentStore>();
@@ -443,7 +443,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
443443
type = "supportTickets",
444444
id = existingTicket2.StringId,
445445
meta = identifierMeta2
446-
},
446+
}
447447
},
448448
meta = documentMeta
449449
};
@@ -468,7 +468,7 @@ await _testContext.RunOnDatabaseAsync(async dbContext =>
468468
}
469469

470470
[Fact]
471-
public async Task Accepts_meta_in_post_relationship_request()
471+
public async Task Accepts_meta_in_add_relationship_request()
472472
{
473473
// Arrange
474474
var store = _testContext.Factory.Services.GetRequiredService<RequestDocumentStore>();

0 commit comments

Comments
 (0)