aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorphotonconvergence <116527579+photonconvergence@users.noreply.github.com>2022-10-27 18:01:04 -0700
committerphotonconvergence <116527579+photonconvergence@users.noreply.github.com>2022-10-27 18:01:04 -0700
commit09e8a7e62c9a8ef567f2d336e37a7cc732e3aaab (patch)
tree8f0f8d8590e730d61d896344c9bd5e253482a941 /tests
parent790f67aac11e5c32bad19126d4e35b2afa259006 (diff)
Fix extra type differentiation
Change rules for Featurettes and Shorts so they don't both get classed as ExtraType.Clip. Fix test that these changes break
Diffstat (limited to 'tests')
-rw-r--r--tests/Jellyfin.Naming.Tests/Video/ExtraTests.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Jellyfin.Naming.Tests/Video/ExtraTests.cs b/tests/Jellyfin.Naming.Tests/Video/ExtraTests.cs
index 731580e0c..2c33ab492 100644
--- a/tests/Jellyfin.Naming.Tests/Video/ExtraTests.cs
+++ b/tests/Jellyfin.Naming.Tests/Video/ExtraTests.cs
@@ -51,8 +51,9 @@ namespace Jellyfin.Naming.Tests.Video
[InlineData(ExtraType.Interview, "interviews")]
[InlineData(ExtraType.Scene, "scenes")]
[InlineData(ExtraType.Sample, "samples")]
- [InlineData(ExtraType.Clip, "shorts")]
- [InlineData(ExtraType.Clip, "featurettes")]
+ [InlineData(ExtraType.Short, "shorts")]
+ [InlineData(ExtraType.Featurette, "featurettes")]
+ [InlineData(ExtraType.Clip, "clips")]
[InlineData(ExtraType.ThemeVideo, "backdrops")]
[InlineData(ExtraType.Unknown, "extras")]
public void TestDirectories(ExtraType type, string dirName)