Skip to content

Commit

Permalink
Fix build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
albertospelta committed Nov 16, 2024
1 parent e53108e commit 63be47f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dax.Formatter.Tests/Security/SecurityHelpersTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class SecurityHelpersTests
[InlineData("abcdefghiABCDEFGHI??=", "1bca6736f96f84e35fa921938f45ba981a6e3f6aa02bcf46763009d3614cf89d")]
[InlineData("", "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855")]
[InlineData(null, null)]
public void SecurityHelpers_ToHashSHA256_ComputeCorrectResult(string value, string expected)
public void SecurityHelpers_ToHashSHA256_ComputeCorrectResult(string? value, string? expected)
{
var actual = value.ToHashSHA256();
Assert.Equal(expected, actual);
Expand Down

0 comments on commit 63be47f

Please sign in to comment.