diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-08-25 18:26:09 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-25 18:26:09 -0400 |
| commit | e79e2cba276dac1998880869015326a750d38f67 (patch) | |
| tree | 27db848bdc820cad14eb0c1cdcb07ebae888798f /tests | |
| parent | f3298eee69d0c6cdce3a70b6d3a8333f257017c6 (diff) | |
| parent | a81b90f570f681d0f5088637d03bb14a54ef6e2e (diff) | |
Merge pull request #17714 from Shadowghost/fix-localized-view-ids
Stop deriving user view ids from their localized name
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/Library/SeasonResolverTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/Library/SeasonResolverTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Library/SeasonResolverTests.cs index 133a3f7d47..feb2d8a625 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/Library/SeasonResolverTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/Library/SeasonResolverTests.cs @@ -21,7 +21,7 @@ namespace Jellyfin.Server.Implementations.Tests.Library { var localizationMock = new Mock<ILocalizationManager>(); localizationMock - .Setup(l => l.GetLocalizedString(It.IsAny<string>())) + .Setup(l => l.GetServerLocalizedString(It.IsAny<string>())) .Returns("Season {0}"); _resolver = new SeasonResolver( |
