1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-02-07 06:52:35 +00:00

Fixed broken test

This commit is contained in:
Mark McDowall 2014-04-16 00:01:04 -07:00
parent f092f9c08b
commit a2a2ad38b0

View file

@ -1,3 +1,4 @@
using System;
using System.Net;
using FluentAssertions;
using Newtonsoft.Json;
@ -25,8 +26,8 @@ public void fetch_should_return_list_of_mappings()
mappings.Should().NotBeEmpty();
mappings.Should().NotContain(c => string.IsNullOrWhiteSpace(c.SearchTerm));
mappings.Should().NotContain(c => string.IsNullOrWhiteSpace(c.ParseTerm));
mappings.Should().NotContain(c => String.IsNullOrWhiteSpace(c.SearchTerm));
mappings.Should().NotContain(c => String.IsNullOrWhiteSpace(c.Title));
mappings.Should().NotContain(c => c.TvdbId == 0);
}