1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 09:37:12 +00:00

Fixed broken test

This commit is contained in:
Mark McDowall 2012-12-22 21:40:07 -08:00
parent 4212da9146
commit 8f75de4a8b

View file

@ -49,7 +49,7 @@ public void should_return_null_if_value_is_daily()
[Test]
public void should_return_null_if_value_is_weekdays()
{
Mocker.Resolve<TvRageProvider>().ParseDayOfWeek(new XElement("airday", "Weekdays")).Should().Be(null);
new XElement("airday", "Weekdays").ConvertToDayOfWeek().Should().Be(null);
}
[TestCase("Sunday", DayOfWeek.Sunday)]