aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2022-05-04 08:19:43 -0600
committercrobibero <cody@robibe.ro>2022-05-20 18:30:56 -0400
commite263e9c2b129ef20c696ce458e00cd4d3367c520 (patch)
tree27233bb5b1004122b56e55a8a828610a0165746e /tests
parentefcdab116f85a560c9362185a9e333c3fc9df41d (diff)
Merge pull request #7544 from jaantaponen/long-filename-fix
(cherry picked from commit 8a1eca09138d50c033b100a63e5f51d18e3669bb) Signed-off-by: crobibero <cody@robibe.ro>
Diffstat (limited to 'tests')
-rw-r--r--tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs b/tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs
index 09aec82b0..f107b1ef9 100644
--- a/tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs
+++ b/tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs
@@ -85,6 +85,17 @@ namespace Jellyfin.Server.Implementations.Tests.LiveTv
EpisodeTitle = "The VCR Illumination"
});
+ data.Add(
+ "Lorem ipsum dolor sit amet: consect 2018_12_06_21_06_00",
+ new TimerInfo
+ {
+ Name = "Lorem ipsum dolor sit amet: consect",
+ IsProgramSeries = true,
+ StartDate = new DateTime(2018, 12, 6, 21, 6, 0, DateTimeKind.Local),
+ OriginalAirDate = new DateTime(2018, 12, 6),
+ EpisodeTitle = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor"
+ });
+
return data;
}