diff options
| author | JPVenson <github@jpb.email> | 2024-11-17 01:23:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-17 01:23:26 +0100 |
| commit | 427359deee0a029a36ed92f2668968b5976eb4a9 (patch) | |
| tree | 3b0206f69fdc5a04f2b46fd63c3d25c4c4fe424d /tests/Jellyfin.Server.Implementations.Tests | |
| parent | 17e4485b946f5b58a0bed99312c57abb59181376 (diff) | |
| parent | 9e05abcc850c0c41818042d4383c621f54a6e40f (diff) | |
Merge branch 'master' into feature/EFUserData
Diffstat (limited to 'tests/Jellyfin.Server.Implementations.Tests')
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/TypedBaseItem/BaseItemKindTests.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/TypedBaseItem/BaseItemKindTests.cs b/tests/Jellyfin.Server.Implementations.Tests/TypedBaseItem/BaseItemKindTests.cs index 1bd51b246..9a4389e7a 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/TypedBaseItem/BaseItemKindTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/TypedBaseItem/BaseItemKindTests.cs @@ -35,7 +35,7 @@ namespace Jellyfin.Server.Implementations.Tests.TypedBaseItem public void EnumParse_GivenValidBaseItemType_ReturnsEnumValue(Type baseItemDescendantType) { var enumValue = Enum.Parse<BaseItemKind>(baseItemDescendantType.Name); - Assert.True(Enum.IsDefined(typeof(BaseItemKind), enumValue)); + Assert.True(Enum.IsDefined(enumValue)); } [Theory] |
