mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed broken test
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
using System;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using FluentAssertions;
|
using FluentAssertions;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
@@ -25,8 +26,8 @@ namespace NzbDrone.Core.Test.DataAugmentationFixture.Scene
|
|||||||
|
|
||||||
mappings.Should().NotBeEmpty();
|
mappings.Should().NotBeEmpty();
|
||||||
|
|
||||||
mappings.Should().NotContain(c => string.IsNullOrWhiteSpace(c.SearchTerm));
|
mappings.Should().NotContain(c => String.IsNullOrWhiteSpace(c.SearchTerm));
|
||||||
mappings.Should().NotContain(c => string.IsNullOrWhiteSpace(c.ParseTerm));
|
mappings.Should().NotContain(c => String.IsNullOrWhiteSpace(c.Title));
|
||||||
mappings.Should().NotContain(c => c.TvdbId == 0);
|
mappings.Should().NotContain(c => c.TvdbId == 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user