diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-08-16 08:59:43 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-16 08:59:43 +0200 |
| commit | fa77902955c67f8dda8a3280081b56d029fa25f7 (patch) | |
| tree | bf6e0631c9fda6c8d6e9786c3d765b9df68412d3 /tests | |
| parent | db0d5b048a2ced6538604c8aceaeb832ac2ce694 (diff) | |
| parent | 19824bff94a9f557c3fb1616e1b5031fd125a53a (diff) | |
Merge pull request #6430 from Bond-009/minor17
Minor improvements
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs b/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs index edd4b1e55..143020d43 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/Localization/LocalizationManagerTests.cs @@ -66,7 +66,7 @@ namespace Jellyfin.Server.Implementations.Tests.Localization var germany = localizationManager.FindLanguageInfo(identifier); Assert.NotNull(germany); - Assert.Equal("ger", germany.ThreeLetterISOLanguageName); + Assert.Equal("ger", germany!.ThreeLetterISOLanguageName); Assert.Equal("German", germany.DisplayName); Assert.Equal("German", germany.Name); Assert.Contains("deu", germany.ThreeLetterISOLanguageNames); |
