mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 15:42:48 -05:00
Relax nullable in test projects (#5379)
* Relax nullable in test projects * Fix xUnit Warnings * More xUnit fixes
This commit is contained in:
@ -248,7 +248,7 @@ public class GroupsControllerTests : IClassFixture<ScimApplicationFactory>, IAsy
|
||||
[InlineData(null)]
|
||||
[InlineData("")]
|
||||
[InlineData(" ")]
|
||||
public async Task Post_InvalidDisplayName_BadRequest(string displayName)
|
||||
public async Task Post_InvalidDisplayName_BadRequest(string? displayName)
|
||||
{
|
||||
var organizationId = ScimApplicationFactory.TestOrganizationId1;
|
||||
var model = new ScimGroupRequestModel
|
||||
|
Reference in New Issue
Block a user