diff --git a/src/NzbDrone.Api.Test/NzbDrone.Api.Test.csproj b/src/NzbDrone.Api.Test/NzbDrone.Api.Test.csproj
index 3e355f4ace..bb90521241 100644
--- a/src/NzbDrone.Api.Test/NzbDrone.Api.Test.csproj
+++ b/src/NzbDrone.Api.Test/NzbDrone.Api.Test.csproj
@@ -38,6 +38,13 @@
4
+
+ False
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -48,9 +55,6 @@
..\packages\NBuilder.3.0.1.1\lib\FizzWare.NBuilder.dll
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\Moq.4.0.10827\lib\NET40\Moq.dll
diff --git a/src/NzbDrone.Api.Test/packages.config b/src/NzbDrone.Api.Test/packages.config
index ce6653d253..492cf9b495 100644
--- a/src/NzbDrone.Api.Test/packages.config
+++ b/src/NzbDrone.Api.Test/packages.config
@@ -1,6 +1,6 @@
-
+
diff --git a/src/NzbDrone.App.Test/NzbDrone.Host.Test.csproj b/src/NzbDrone.App.Test/NzbDrone.Host.Test.csproj
index 7157fa4392..187b9539fd 100644
--- a/src/NzbDrone.App.Test/NzbDrone.Host.Test.csproj
+++ b/src/NzbDrone.App.Test/NzbDrone.Host.Test.csproj
@@ -37,6 +37,13 @@
4
+
+ False
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -45,9 +52,6 @@
..\packages\NBuilder.3.0.1.1\lib\FizzWare.NBuilder.dll
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\Moq.4.0.10827\lib\NET40\Moq.dll
diff --git a/src/NzbDrone.App.Test/packages.config b/src/NzbDrone.App.Test/packages.config
index c88b100c84..ae445db35d 100644
--- a/src/NzbDrone.App.Test/packages.config
+++ b/src/NzbDrone.App.Test/packages.config
@@ -1,6 +1,6 @@
-
+
diff --git a/src/NzbDrone.Automation.Test/NzbDrone.Automation.Test.csproj b/src/NzbDrone.Automation.Test/NzbDrone.Automation.Test.csproj
index 2b9831fcbf..0054738af2 100644
--- a/src/NzbDrone.Automation.Test/NzbDrone.Automation.Test.csproj
+++ b/src/NzbDrone.Automation.Test/NzbDrone.Automation.Test.csproj
@@ -38,6 +38,12 @@
4
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -46,9 +52,6 @@
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\NLog.2.1.0\lib\net40\NLog.dll
diff --git a/src/NzbDrone.Automation.Test/packages.config b/src/NzbDrone.Automation.Test/packages.config
index d75ebfa6b6..e0cf506a1f 100644
--- a/src/NzbDrone.Automation.Test/packages.config
+++ b/src/NzbDrone.Automation.Test/packages.config
@@ -1,6 +1,6 @@
-
+
diff --git a/src/NzbDrone.Common.Test/EnvironmentProviderTest.cs b/src/NzbDrone.Common.Test/EnvironmentProviderTest.cs
index 98f6d862bd..362a093762 100644
--- a/src/NzbDrone.Common.Test/EnvironmentProviderTest.cs
+++ b/src/NzbDrone.Common.Test/EnvironmentProviderTest.cs
@@ -14,7 +14,7 @@ public class IAppDirectoryInfoTest : TestBase
[Test]
public void StartupPath_should_not_be_empty()
{
- Subject.StartUpFolder.Should().NotBeBlank();
+ Subject.StartUpFolder.Should().NotBeNullOrWhiteSpace();
Path.IsPathRooted(Subject.StartUpFolder).Should().BeTrue("Path is not rooted");
}
@@ -22,7 +22,7 @@ public void StartupPath_should_not_be_empty()
[Test]
public void ApplicationPath_should_not_be_empty()
{
- Subject.AppDataFolder.Should().NotBeBlank();
+ Subject.AppDataFolder.Should().NotBeNullOrWhiteSpace();
Path.IsPathRooted(Subject.AppDataFolder).Should().BeTrue("Path is not rooted");
}
diff --git a/src/NzbDrone.Common.Test/NzbDrone.Common.Test.csproj b/src/NzbDrone.Common.Test/NzbDrone.Common.Test.csproj
index d813e54f92..4135a24d39 100644
--- a/src/NzbDrone.Common.Test/NzbDrone.Common.Test.csproj
+++ b/src/NzbDrone.Common.Test/NzbDrone.Common.Test.csproj
@@ -37,6 +37,13 @@
4
+
+ False
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -45,9 +52,6 @@
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\Moq.4.0.10827\lib\NET40\Moq.dll
diff --git a/src/NzbDrone.Common.Test/WebClientTests.cs b/src/NzbDrone.Common.Test/WebClientTests.cs
index a2dfdd78f0..9e8b81ffd6 100644
--- a/src/NzbDrone.Common.Test/WebClientTests.cs
+++ b/src/NzbDrone.Common.Test/WebClientTests.cs
@@ -15,7 +15,7 @@ public void DownloadString_should_be_able_to_dowload_text_file()
{
var jquery = Subject.DownloadString("http://www.google.com/robots.txt");
- jquery.Should().NotBeBlank();
+ jquery.Should().NotBeNullOrWhiteSpace();
jquery.Should().Contain("Sitemap");
}
diff --git a/src/NzbDrone.Common.Test/packages.config b/src/NzbDrone.Common.Test/packages.config
index 80b884496c..7f9f6fc6e5 100644
--- a/src/NzbDrone.Common.Test/packages.config
+++ b/src/NzbDrone.Common.Test/packages.config
@@ -1,6 +1,6 @@
-
+
diff --git a/src/NzbDrone.Core.Test/Datastore/BasicRepositoryFixture.cs b/src/NzbDrone.Core.Test/Datastore/BasicRepositoryFixture.cs
index 0d443f7296..d909baecfb 100644
--- a/src/NzbDrone.Core.Test/Datastore/BasicRepositoryFixture.cs
+++ b/src/NzbDrone.Core.Test/Datastore/BasicRepositoryFixture.cs
@@ -63,9 +63,8 @@ public void should_be_able_to_find_by_id()
{
Subject.Insert(_basicType);
Subject.Get(_basicType.Id)
- .ShouldHave()
- .AllProperties()
- .EqualTo(_basicType);
+ .Should()
+ .ShouldBeEquivalentTo(_basicType);
}
[Test]
diff --git a/src/NzbDrone.Core.Test/Datastore/DatabaseRelationshipFixture.cs b/src/NzbDrone.Core.Test/Datastore/DatabaseRelationshipFixture.cs
index 6510d12d26..fca99e845a 100644
--- a/src/NzbDrone.Core.Test/Datastore/DatabaseRelationshipFixture.cs
+++ b/src/NzbDrone.Core.Test/Datastore/DatabaseRelationshipFixture.cs
@@ -89,7 +89,8 @@ public void one_to_one()
var loadedEpisodeFile = Db.Single().EpisodeFile.Value;
loadedEpisodeFile.Should().NotBeNull();
- loadedEpisodeFile.ShouldHave().AllProperties().But(c => c.DateAdded).But(c => c.Path).EqualTo(episodeFile);
+ loadedEpisodeFile.ShouldBeEquivalentTo(episodeFile,
+ options => options.Excluding(c => c.DateAdded).Excluding(c => c.Path));
}
[Test]
diff --git a/src/NzbDrone.Core.Test/MetadataSourceTests/TraktProxyFixture.cs b/src/NzbDrone.Core.Test/MetadataSourceTests/TraktProxyFixture.cs
index cdc09ed366..1e8d4df5c5 100644
--- a/src/NzbDrone.Core.Test/MetadataSourceTests/TraktProxyFixture.cs
+++ b/src/NzbDrone.Core.Test/MetadataSourceTests/TraktProxyFixture.cs
@@ -68,18 +68,18 @@ public void should_not_have_period_at_start_of_title_slug()
private void ValidateSeries(Series series)
{
series.Should().NotBeNull();
- series.Title.Should().NotBeBlank();
+ series.Title.Should().NotBeNullOrWhiteSpace();
series.CleanTitle.Should().Be(Parser.Parser.CleanSeriesTitle(series.Title));
series.SortTitle.Should().Be(Parser.Parser.NormalizeEpisodeTitle(series.Title));
- series.Overview.Should().NotBeBlank();
- series.AirTime.Should().NotBeBlank();
+ series.Overview.Should().NotBeNullOrWhiteSpace();
+ series.AirTime.Should().NotBeNullOrWhiteSpace();
series.FirstAired.Should().HaveValue();
series.FirstAired.Value.Kind.Should().Be(DateTimeKind.Utc);
series.Images.Should().NotBeEmpty();
- series.ImdbId.Should().NotBeBlank();
- series.Network.Should().NotBeBlank();
+ series.ImdbId.Should().NotBeNullOrWhiteSpace();
+ series.Network.Should().NotBeNullOrWhiteSpace();
series.Runtime.Should().BeGreaterThan(0);
- series.TitleSlug.Should().NotBeBlank();
+ series.TitleSlug.Should().NotBeNullOrWhiteSpace();
series.TvRageId.Should().BeGreaterThan(0);
series.TvdbId.Should().BeGreaterThan(0);
}
diff --git a/src/NzbDrone.Core.Test/MetadataSourceTests/TvdbProxyFixture.cs b/src/NzbDrone.Core.Test/MetadataSourceTests/TvdbProxyFixture.cs
index 5d06260d09..2b60efce99 100644
--- a/src/NzbDrone.Core.Test/MetadataSourceTests/TvdbProxyFixture.cs
+++ b/src/NzbDrone.Core.Test/MetadataSourceTests/TvdbProxyFixture.cs
@@ -68,17 +68,17 @@ public void should_be_able_to_get_series_detail(int tvdbId)
private void ValidateSeries(Series series)
{
series.Should().NotBeNull();
- series.Title.Should().NotBeBlank();
+ series.Title.Should().NotBeNullOrWhiteSpace();
series.CleanTitle.Should().Be(Parser.Parser.CleanSeriesTitle(series.Title));
- series.Overview.Should().NotBeBlank();
- series.AirTime.Should().NotBeBlank();
+ series.Overview.Should().NotBeNullOrWhiteSpace();
+ series.AirTime.Should().NotBeNullOrWhiteSpace();
series.FirstAired.Should().HaveValue();
series.FirstAired.Value.Kind.Should().Be(DateTimeKind.Utc);
series.Images.Should().NotBeEmpty();
- series.ImdbId.Should().NotBeBlank();
- series.Network.Should().NotBeBlank();
+ series.ImdbId.Should().NotBeNullOrWhiteSpace();
+ series.Network.Should().NotBeNullOrWhiteSpace();
series.Runtime.Should().BeGreaterThan(0);
- series.TitleSlug.Should().NotBeBlank();
+ series.TitleSlug.Should().NotBeNullOrWhiteSpace();
series.TvRageId.Should().BeGreaterThan(0);
series.TvdbId.Should().BeGreaterThan(0);
}
diff --git a/src/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj b/src/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
index 3b913ed264..d9ac9c6155 100644
--- a/src/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
+++ b/src/NzbDrone.Core.Test/NzbDrone.Core.Test.csproj
@@ -40,6 +40,13 @@
OnBuildSuccess
+
+ False
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
False
..\packages\FluentValidation.5.4.0.0\lib\Net40\FluentValidation.dll
@@ -55,9 +62,6 @@
..\packages\NBuilder.3.0.1.1\lib\FizzWare.NBuilder.dll
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\FluentMigrator.1.1.1.0\lib\40\FluentMigrator.dll
diff --git a/src/NzbDrone.Core.Test/ThingiProvider/ProviderBaseFixture.cs b/src/NzbDrone.Core.Test/ThingiProvider/ProviderBaseFixture.cs
index 05c4229f2a..8ee5aa3a83 100644
--- a/src/NzbDrone.Core.Test/ThingiProvider/ProviderBaseFixture.cs
+++ b/src/NzbDrone.Core.Test/ThingiProvider/ProviderBaseFixture.cs
@@ -24,7 +24,7 @@ public void should_read_write_download_provider()
var storedSetting = (NewznabSettings)storedProvider.Settings;
- storedSetting.ShouldHave().AllProperties().EqualTo(newznabSettings);
+ storedSetting.ShouldBeEquivalentTo(newznabSettings);
}
}
}
\ No newline at end of file
diff --git a/src/NzbDrone.Core.Test/packages.config b/src/NzbDrone.Core.Test/packages.config
index 9c38a0eb78..e9bbeff464 100644
--- a/src/NzbDrone.Core.Test/packages.config
+++ b/src/NzbDrone.Core.Test/packages.config
@@ -2,7 +2,7 @@
-
+
diff --git a/src/NzbDrone.Integration.Test/Client/ClientBase.cs b/src/NzbDrone.Integration.Test/Client/ClientBase.cs
index 228ac98eb5..6e6fa91e8d 100644
--- a/src/NzbDrone.Integration.Test/Client/ClientBase.cs
+++ b/src/NzbDrone.Integration.Test/Client/ClientBase.cs
@@ -144,7 +144,7 @@ public void Delete(IRestRequest request, HttpStatusCode statusCode = HttpStatusC
AssertDisableCache(response.Headers);
- response.ErrorMessage.Should().BeBlank();
+ response.ErrorMessage.Should().BeNullOrWhiteSpace();
response.StatusCode.Should().Be(statusCode);
diff --git a/src/NzbDrone.Integration.Test/CommandIntegerationTests.cs b/src/NzbDrone.Integration.Test/CommandIntegerationTests.cs
index 1dbe33b672..5096d27d0e 100644
--- a/src/NzbDrone.Integration.Test/CommandIntegerationTests.cs
+++ b/src/NzbDrone.Integration.Test/CommandIntegerationTests.cs
@@ -30,7 +30,7 @@ public void should_be_able_to_run_rss_sync()
throw response.ErrorException;
}
- response.ErrorMessage.Should().BeBlank();
+ response.ErrorMessage.Should().BeNullOrWhiteSpace();
response.StatusCode.Should().Be(HttpStatusCode.Created);
var trackedCommand = Json.Deserialize(response.Content);
diff --git a/src/NzbDrone.Integration.Test/NzbDrone.Integration.Test.csproj b/src/NzbDrone.Integration.Test/NzbDrone.Integration.Test.csproj
index 15e697f896..6df116dd35 100644
--- a/src/NzbDrone.Integration.Test/NzbDrone.Integration.Test.csproj
+++ b/src/NzbDrone.Integration.Test/NzbDrone.Integration.Test.csproj
@@ -38,6 +38,13 @@
4
+
+ False
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
False
..\packages\FluentValidation.5.4.0.0\lib\Net40\FluentValidation.dll
@@ -68,9 +75,6 @@
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\Microsoft.AspNet.SignalR.Client.1.1.3\lib\net40\Microsoft.AspNet.SignalR.Client.dll
diff --git a/src/NzbDrone.Integration.Test/ReleaseIntegrationTest.cs b/src/NzbDrone.Integration.Test/ReleaseIntegrationTest.cs
index 3804a90d23..884039de68 100644
--- a/src/NzbDrone.Integration.Test/ReleaseIntegrationTest.cs
+++ b/src/NzbDrone.Integration.Test/ReleaseIntegrationTest.cs
@@ -21,11 +21,11 @@ public void should_only_have_unknown_series_releases()
private bool BeValidRelease(ReleaseResource releaseResource)
{
releaseResource.Age.Should().BeGreaterOrEqualTo(-1);
- releaseResource.Title.Should().NotBeBlank();
- releaseResource.DownloadUrl.Should().NotBeBlank();
- releaseResource.SeriesTitle.Should().NotBeBlank();
+ releaseResource.Title.Should().NotBeNullOrWhiteSpace();
+ releaseResource.DownloadUrl.Should().NotBeNullOrWhiteSpace();
+ releaseResource.SeriesTitle.Should().NotBeNullOrWhiteSpace();
//TODO: uncomment these after moving to restsharp for rss
- //releaseResource.NzbInfoUrl.Should().NotBeBlank();
+ //releaseResource.NzbInfoUrl.Should().NotBeNullOrWhiteSpace();
//releaseResource.Size.Should().BeGreaterThan(0);
return true;
diff --git a/src/NzbDrone.Integration.Test/packages.config b/src/NzbDrone.Integration.Test/packages.config
index 2a6d798157..285b61874d 100644
--- a/src/NzbDrone.Integration.Test/packages.config
+++ b/src/NzbDrone.Integration.Test/packages.config
@@ -1,6 +1,6 @@
-
+
diff --git a/src/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs b/src/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs
index 951eaa4a14..7ba31a26d5 100644
--- a/src/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs
+++ b/src/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs
@@ -23,7 +23,7 @@ public void should_be_able_to_deserialize_numbers()
var quality = new TypeWithNumbers { Int32 = Int32.MaxValue, Int64 = Int64.MaxValue, nullableWithValue = 12 };
var result = Json.Deserialize(quality.ToJson());
- result.ShouldHave().AllProperties().EqualTo(quality);
+ result.ShouldBeEquivalentTo(quality);
}
}
}
diff --git a/src/NzbDrone.Libraries.Test/NzbDrone.Libraries.Test.csproj b/src/NzbDrone.Libraries.Test/NzbDrone.Libraries.Test.csproj
index 9795e646fc..ee1b6fc20b 100644
--- a/src/NzbDrone.Libraries.Test/NzbDrone.Libraries.Test.csproj
+++ b/src/NzbDrone.Libraries.Test/NzbDrone.Libraries.Test.csproj
@@ -38,6 +38,13 @@
4
+
+ False
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -45,9 +52,6 @@
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll
diff --git a/src/NzbDrone.Libraries.Test/packages.config b/src/NzbDrone.Libraries.Test/packages.config
index 48393462a0..ca695075a7 100644
--- a/src/NzbDrone.Libraries.Test/packages.config
+++ b/src/NzbDrone.Libraries.Test/packages.config
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/src/NzbDrone.Mono.Test/NzbDrone.Mono.Test.csproj b/src/NzbDrone.Mono.Test/NzbDrone.Mono.Test.csproj
index eb9bf81158..017feb4bb5 100644
--- a/src/NzbDrone.Mono.Test/NzbDrone.Mono.Test.csproj
+++ b/src/NzbDrone.Mono.Test/NzbDrone.Mono.Test.csproj
@@ -50,6 +50,13 @@
MinimumRecommendedRules.ruleset
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+ True
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -57,10 +64,6 @@
-
- False
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\NUnit.2.6.2\lib\nunit.framework.dll
diff --git a/src/NzbDrone.Mono.Test/packages.config b/src/NzbDrone.Mono.Test/packages.config
index e6606e6695..92aed87397 100644
--- a/src/NzbDrone.Mono.Test/packages.config
+++ b/src/NzbDrone.Mono.Test/packages.config
@@ -1,5 +1,5 @@
-
+
\ No newline at end of file
diff --git a/src/NzbDrone.Test.Common/NzbDrone.Test.Common.csproj b/src/NzbDrone.Test.Common/NzbDrone.Test.Common.csproj
index ad1812390d..817a959a5f 100644
--- a/src/NzbDrone.Test.Common/NzbDrone.Test.Common.csproj
+++ b/src/NzbDrone.Test.Common/NzbDrone.Test.Common.csproj
@@ -37,6 +37,13 @@
4
+
+ False
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -44,9 +51,6 @@
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\CommonServiceLocator.1.0\lib\NET35\Microsoft.Practices.ServiceLocation.dll
diff --git a/src/NzbDrone.Test.Common/packages.config b/src/NzbDrone.Test.Common/packages.config
index 5cea9507ca..ece97eaba8 100644
--- a/src/NzbDrone.Test.Common/packages.config
+++ b/src/NzbDrone.Test.Common/packages.config
@@ -1,7 +1,7 @@
-
+
diff --git a/src/NzbDrone.Update.Test/NzbDrone.Update.Test.csproj b/src/NzbDrone.Update.Test/NzbDrone.Update.Test.csproj
index 0c67a4344f..0eaf1b438d 100644
--- a/src/NzbDrone.Update.Test/NzbDrone.Update.Test.csproj
+++ b/src/NzbDrone.Update.Test/NzbDrone.Update.Test.csproj
@@ -37,6 +37,13 @@
4
+
+ False
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -47,9 +54,6 @@
..\packages\NBuilder.3.0.1.1\lib\FizzWare.NBuilder.dll
-
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
..\packages\Moq.4.0.10827\lib\NET40\Moq.dll
diff --git a/src/NzbDrone.Update.Test/packages.config b/src/NzbDrone.Update.Test/packages.config
index c88b100c84..ae445db35d 100644
--- a/src/NzbDrone.Update.Test/packages.config
+++ b/src/NzbDrone.Update.Test/packages.config
@@ -1,6 +1,6 @@
-
+
diff --git a/src/NzbDrone.Windows.Test/NzbDrone.Windows.Test.csproj b/src/NzbDrone.Windows.Test/NzbDrone.Windows.Test.csproj
index e654835573..db9da2e2d2 100644
--- a/src/NzbDrone.Windows.Test/NzbDrone.Windows.Test.csproj
+++ b/src/NzbDrone.Windows.Test/NzbDrone.Windows.Test.csproj
@@ -50,6 +50,12 @@
MinimumRecommendedRules.ruleset
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.dll
+
+
+ ..\packages\FluentAssertions.3.1.229\lib\net40\FluentAssertions.Core.dll
+
@@ -57,10 +63,6 @@
-
- False
- ..\packages\FluentAssertions.2.1.0.0\lib\net40\FluentAssertions.dll
-
False
..\packages\NUnit.2.6.2\lib\nunit.framework.dll
diff --git a/src/NzbDrone.Windows.Test/packages.config b/src/NzbDrone.Windows.Test/packages.config
index e6606e6695..92aed87397 100644
--- a/src/NzbDrone.Windows.Test/packages.config
+++ b/src/NzbDrone.Windows.Test/packages.config
@@ -1,5 +1,5 @@
-
+
\ No newline at end of file