From a2a2ad38b02f050bc501df7ceb9ba1e75d90b83d Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 16 Apr 2014 00:01:04 -0700 Subject: [PATCH] Fixed broken test --- .../Scene/SceneMappingProxyFixture.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core.Test/DataAugmentationFixture/Scene/SceneMappingProxyFixture.cs b/src/NzbDrone.Core.Test/DataAugmentationFixture/Scene/SceneMappingProxyFixture.cs index cef5a5d0b..e2d18dc89 100644 --- a/src/NzbDrone.Core.Test/DataAugmentationFixture/Scene/SceneMappingProxyFixture.cs +++ b/src/NzbDrone.Core.Test/DataAugmentationFixture/Scene/SceneMappingProxyFixture.cs @@ -1,3 +1,4 @@ +using System; using System.Net; using FluentAssertions; using Newtonsoft.Json; @@ -25,8 +26,8 @@ namespace NzbDrone.Core.Test.DataAugmentationFixture.Scene 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); }