mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
Relax nullable in test projects (#5379)
* Relax nullable in test projects * Fix xUnit Warnings * More xUnit fixes
This commit is contained in:
@@ -25,7 +25,7 @@ public class EncryptedStringAttributeTests
|
||||
[InlineData("Rsa2048_OaepSha256_HmacSha256_B64.QmFzZTY0UGFydA==|QmFzZTY0UGFydA==")] // Valid Rsa2048_OaepSha256_HmacSha256_B64 as a string
|
||||
[InlineData("6.QmFzZTY0UGFydA==|QmFzZTY0UGFydA==")] // Valid Rsa2048_OaepSha1_HmacSha256_B64 as a number
|
||||
[InlineData("Rsa2048_OaepSha1_HmacSha256_B64.QmFzZTY0UGFydA==|QmFzZTY0UGFydA==")]
|
||||
public void IsValid_ReturnsTrue_WhenValid(string input)
|
||||
public void IsValid_ReturnsTrue_WhenValid(string? input)
|
||||
{
|
||||
var sut = new EncryptedStringAttribute();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user