mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fixed broken date tests
This commit is contained in:
parent
ddff5dbad4
commit
f278c7f230
@ -197,7 +197,7 @@ public void should_not_accept_ancient_daily_series(string title)
|
|||||||
|
|
||||||
|
|
||||||
[TestCase("Conan {year} {month} {day} Emma Roberts HDTV XviD BFF")]
|
[TestCase("Conan {year} {month} {day} Emma Roberts HDTV XviD BFF")]
|
||||||
[TestCase("The Tonight Show With Jay Leno {year} {day} {month} 1080i HDTV DD5 1 MPEG2 TrollHD")]
|
[TestCase("The Tonight Show With Jay Leno {year} {month} {day} 1080i HDTV DD5 1 MPEG2 TrollHD")]
|
||||||
[TestCase("The.Daily.Show.{year}.{month}.{day}.Johnny.Knoxville.iTouch-MW")]
|
[TestCase("The.Daily.Show.{year}.{month}.{day}.Johnny.Knoxville.iTouch-MW")]
|
||||||
[TestCase("The Daily Show - {year}-{month}-{day} - Gov. Deval Patrick")]
|
[TestCase("The Daily Show - {year}-{month}-{day} - Gov. Deval Patrick")]
|
||||||
[TestCase("{year}.{month}.{day} - Denis Leary - HD TV.mkv")]
|
[TestCase("{year}.{month}.{day} - Denis Leary - HD TV.mkv")]
|
||||||
@ -207,7 +207,7 @@ public void should_not_accept_future_dates(string title)
|
|||||||
{
|
{
|
||||||
var twoDaysFromNow = DateTime.Now.AddDays(2);
|
var twoDaysFromNow = DateTime.Now.AddDays(2);
|
||||||
|
|
||||||
var validDate = title.Expand(new { year = twoDaysFromNow.Year, month = twoDaysFromNow.Month.ToString("00"), day = twoDaysFromNow.Day });
|
var validDate = title.Expand(new { year = twoDaysFromNow.Year, month = twoDaysFromNow.Month.ToString("00"), day = twoDaysFromNow.Day.ToString("00") });
|
||||||
|
|
||||||
Parser.Parser.ParseTitle(validDate).Should().BeNull();
|
Parser.Parser.ParseTitle(validDate).Should().BeNull();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user