diff options
| author | Bill Thornton <thornbill@users.noreply.github.com> | 2025-04-12 09:12:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-12 07:12:33 -0600 |
| commit | afdde7b2439e7f96da0abb9a0989a62770dfb63b (patch) | |
| tree | 90cc1d3255f13bd3d3175b8a8937fa293fbceb49 /tests | |
| parent | 5020c0964028c79f37fd20a21530ead15abf1457 (diff) | |
Remove the hashed password from startup users response (#13904)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Jellyfin.Server.Integration.Tests/Controllers/StartupControllerTests.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/Jellyfin.Server.Integration.Tests/Controllers/StartupControllerTests.cs b/tests/Jellyfin.Server.Integration.Tests/Controllers/StartupControllerTests.cs index 36ba6c7e3..c8ae2a88a 100644 --- a/tests/Jellyfin.Server.Integration.Tests/Controllers/StartupControllerTests.cs +++ b/tests/Jellyfin.Server.Integration.Tests/Controllers/StartupControllerTests.cs @@ -90,9 +90,7 @@ namespace Jellyfin.Server.Integration.Tests.Controllers var newUser = await getResponse.Content.ReadFromJsonAsync<StartupUserDto>(_jsonOptions); Assert.NotNull(newUser); Assert.Equal(user.Name, newUser.Name); - Assert.NotNull(newUser.Password); - Assert.NotEmpty(newUser.Password); - Assert.NotEqual(user.Password, newUser.Password); + Assert.Null(newUser.Password); } [Fact] |
