aboutsummaryrefslogtreecommitdiff
path: root/tests/Jellyfin.Common.Tests/PasswordHashTests.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-06-15 10:50:08 +0900
committerGitHub <noreply@github.com>2020-06-15 10:50:08 +0900
commit155ee5ee9db78ad3fd7cfdc4866a6e13f8a06b80 (patch)
tree2d17d66754c4ae41f872d88a524218acd2654790 /tests/Jellyfin.Common.Tests/PasswordHashTests.cs
parent4f2ae5c9e1116589d5cfa783442042b5ff6a85c2 (diff)
parent4cb8fbfbbf5866886a51e61ec7e9cd54a49f8e23 (diff)
Merge pull request #3329 from telans/code-analyzer-tests
Enable code analyzers for tests
Diffstat (limited to 'tests/Jellyfin.Common.Tests/PasswordHashTests.cs')
-rw-r--r--tests/Jellyfin.Common.Tests/PasswordHashTests.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Jellyfin.Common.Tests/PasswordHashTests.cs b/tests/Jellyfin.Common.Tests/PasswordHashTests.cs
index 03523dbc4..46926f4f8 100644
--- a/tests/Jellyfin.Common.Tests/PasswordHashTests.cs
+++ b/tests/Jellyfin.Common.Tests/PasswordHashTests.cs
@@ -7,7 +7,8 @@ namespace Jellyfin.Common.Tests
public class PasswordHashTests
{
[Theory]
- [InlineData("$PBKDF2$iterations=1000$62FBA410AFCA5B4475F35137AB2E8596B127E4D927BA23F6CC05C067E897042D",
+ [InlineData(
+ "$PBKDF2$iterations=1000$62FBA410AFCA5B4475F35137AB2E8596B127E4D927BA23F6CC05C067E897042D",
"PBKDF2",
"",
"62FBA410AFCA5B4475F35137AB2E8596B127E4D927BA23F6CC05C067E897042D")]