AirDate now stored as a string

This commit is contained in:
Mark McDowall
2013-07-25 20:25:24 -07:00
parent ea278c39b6
commit 5bfcc511e8
20 changed files with 108 additions and 123 deletions

View File

@@ -42,7 +42,7 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabProviderTests
_remoteEpisode.Episodes = Builder<Episode>.CreateListOfSize(1)
.All()
.With(e => e.AirDate = DateTime.Today)
.With(e => e.AirDate = DateTime.Today.ToString(Episode.AIR_DATE_FORMAT))
.Build()
.ToList();
}