diff --git a/src/NzbDrone.Api.Test/NzbDrone.Api.Test.csproj b/src/NzbDrone.Api.Test/NzbDrone.Api.Test.csproj
index 3e355f4ac..bb9052124 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 ce6653d25..492cf9b49 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 7157fa439..187b9539f 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 c88b100c8..ae445db35 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 2b9831fcb..0054738af 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 d75ebfa6b..e0cf506a1 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 98f6d862b..362a09376 100644
--- a/src/NzbDrone.Common.Test/EnvironmentProviderTest.cs
+++ b/src/NzbDrone.Common.Test/EnvironmentProviderTest.cs
@@ -14,7 +14,7 @@ namespace NzbDrone.Common.Test
[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 @@ namespace NzbDrone.Common.Test
[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 d813e54f9..4135a24d3 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 a2dfdd78f..9e8b81ffd 100644
--- a/src/NzbDrone.Common.Test/WebClientTests.cs
+++ b/src/NzbDrone.Common.Test/WebClientTests.cs
@@ -15,7 +15,7 @@ namespace NzbDrone.Common.Test
{
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 80b884496..7f9f6fc6e 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 0d443f729..d909baecf 100644
--- a/src/NzbDrone.Core.Test/Datastore/BasicRepositoryFixture.cs
+++ b/src/NzbDrone.Core.Test/Datastore/BasicRepositoryFixture.cs
@@ -63,9 +63,8 @@ namespace NzbDrone.Core.Test.Datastore
{
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 6510d12d2..fca99e845 100644
--- a/src/NzbDrone.Core.Test/Datastore/DatabaseRelationshipFixture.cs
+++ b/src/NzbDrone.Core.Test/Datastore/DatabaseRelationshipFixture.cs
@@ -89,7 +89,8 @@ namespace NzbDrone.Core.Test.Datastore
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 cdc09ed36..1e8d4df5c 100644
--- a/src/NzbDrone.Core.Test/MetadataSourceTests/TraktProxyFixture.cs
+++ b/src/NzbDrone.Core.Test/MetadataSourceTests/TraktProxyFixture.cs
@@ -68,18 +68,18 @@ namespace NzbDrone.Core.Test.MetadataSourceTests
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 5d06260d0..2b60efce9 100644
--- a/src/NzbDrone.Core.Test/MetadataSourceTests/TvdbProxyFixture.cs
+++ b/src/NzbDrone.Core.Test/MetadataSourceTests/TvdbProxyFixture.cs
@@ -68,17 +68,17 @@ namespace NzbDrone.Core.Test.MetadataSourceTests
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 3b913ed26..d9ac9c615 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 05c4229f2..8ee5aa3a8 100644
--- a/src/NzbDrone.Core.Test/ThingiProvider/ProviderBaseFixture.cs
+++ b/src/NzbDrone.Core.Test/ThingiProvider/ProviderBaseFixture.cs
@@ -24,7 +24,7 @@ namespace NzbDrone.Core.Test.ThingiProvider
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 9c38a0eb7..e9bbeff46 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 228ac98eb..6e6fa91e8 100644
--- a/src/NzbDrone.Integration.Test/Client/ClientBase.cs
+++ b/src/NzbDrone.Integration.Test/Client/ClientBase.cs
@@ -144,7 +144,7 @@ namespace NzbDrone.Integration.Test.Client
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 1dbe33b67..5096d27d0 100644
--- a/src/NzbDrone.Integration.Test/CommandIntegerationTests.cs
+++ b/src/NzbDrone.Integration.Test/CommandIntegerationTests.cs
@@ -30,7 +30,7 @@ namespace NzbDrone.Integration.Test
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 15e697f89..6df116dd3 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 3804a90d2..884039de6 100644
--- a/src/NzbDrone.Integration.Test/ReleaseIntegrationTest.cs
+++ b/src/NzbDrone.Integration.Test/ReleaseIntegrationTest.cs
@@ -21,11 +21,11 @@ namespace NzbDrone.Integration.Test
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 2a6d79815..285b61874 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 951eaa4a1..7ba31a26d 100644
--- a/src/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs
+++ b/src/NzbDrone.Libraries.Test/JsonTests/JsonFixture.cs
@@ -23,7 +23,7 @@ namespace NzbDrone.Libraries.Test.JsonTests
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 9795e646f..ee1b6fc20 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 48393462a..ca695075a 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 eb9bf8115..017feb4bb 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 e6606e669..92aed8739 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 ad1812390..817a959a5 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 5cea9507c..ece97eaba 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 0c67a4344..0eaf1b438 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 c88b100c8..ae445db35 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 e65483557..db9da2e2d 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 e6606e669..92aed8739 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