1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 17:59:14 +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] [Test]
public void should_return_null_if_value_is_weekdays() 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)] [TestCase("Sunday", DayOfWeek.Sunday)]