diff options
| author | Bond-009 <bond.009@outlook.com> | 2021-11-24 09:14:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-24 09:14:22 +0100 |
| commit | e30ac91f16ca418290799f6ad298806867fcbe92 (patch) | |
| tree | cf97cf2612cea1c18af225d11f9523792a04a0e4 | |
| parent | 3c030740ea5d180aa170f2a7c2cfcddb12eac0a7 (diff) | |
| parent | 95183c365ac5028dc7563701e7adbd0903986728 (diff) | |
Merge pull request #6900 from ianjazz246/local-time-test
| -rw-r--r-- | tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs b/tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs index 976afe195..09aec82b0 100644 --- a/tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs +++ b/tests/Jellyfin.Server.Implementations.Tests/LiveTv/RecordingHelperTests.cs @@ -61,7 +61,7 @@ namespace Jellyfin.Server.Implementations.Tests.LiveTv { Name = "The Big Bang Theory", IsProgramSeries = true, - OriginalAirDate = new DateTime(2018, 12, 6) + OriginalAirDate = new DateTime(2018, 12, 6, 0, 0, 0, DateTimeKind.Local) }); data.Add( @@ -70,7 +70,7 @@ namespace Jellyfin.Server.Implementations.Tests.LiveTv { Name = "The Big Bang Theory", IsProgramSeries = true, - OriginalAirDate = new DateTime(2018, 12, 6), + OriginalAirDate = new DateTime(2018, 12, 6, 0, 0, 0, DateTimeKind.Local), EpisodeTitle = "The VCR Illumination" }); |
