mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02:00
AirDate now stored as a string
This commit is contained in:
@@ -700,7 +700,7 @@ namespace NzbDrone.Core.Test.OrganizerTests
|
||||
var episodes = Builder<Episode>
|
||||
.CreateListOfSize(1)
|
||||
.All()
|
||||
.With(e => e.AirDate = new DateTime(2012, 12, 13))
|
||||
.With(e => e.AirDate = "2012-12-13")
|
||||
.With(e => e.Title = "Kristen Stewart")
|
||||
.Build();
|
||||
|
||||
@@ -729,7 +729,7 @@ namespace NzbDrone.Core.Test.OrganizerTests
|
||||
var episodes = Builder<Episode>
|
||||
.CreateListOfSize(1)
|
||||
.All()
|
||||
.With(e => e.AirDate = new DateTime(2012, 12, 13))
|
||||
.With(e => e.AirDate = "2012-12-13")
|
||||
.With(e => e.Title = "Kristen Stewart")
|
||||
.Build();
|
||||
|
||||
|
Reference in New Issue
Block a user