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:
@ -47,7 +47,7 @@ public class StrictEmailAttributeTests
|
||||
[InlineData("hellothere@world.com-")] // domain ending in hyphen
|
||||
[InlineData("hellö@world.com")] // unicode at end of local-part
|
||||
[InlineData("héllo@world.com")] // unicode in middle of local-part
|
||||
public void IsValid_ReturnsFalseWhenInvalid(string email)
|
||||
public void IsValid_ReturnsFalseWhenInvalid(string? email)
|
||||
{
|
||||
var sut = new StrictEmailAddressAttribute();
|
||||
|
||||
|
Reference in New Issue
Block a user