From 5ead395f9f8a9c82e4dab17ee7980eec527133a2 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 21 May 2023 17:30:52 +0300 Subject: [PATCH] Fix tests in TorrentDownloadStationFixture --- .../DownloadStationTests/TorrentDownloadStationFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core.Test/Download/DownloadClientTests/DownloadStationTests/TorrentDownloadStationFixture.cs b/src/NzbDrone.Core.Test/Download/DownloadClientTests/DownloadStationTests/TorrentDownloadStationFixture.cs index feca091df..e3ce75b02 100644 --- a/src/NzbDrone.Core.Test/Download/DownloadClientTests/DownloadStationTests/TorrentDownloadStationFixture.cs +++ b/src/NzbDrone.Core.Test/Download/DownloadClientTests/DownloadStationTests/TorrentDownloadStationFixture.cs @@ -638,7 +638,7 @@ public void GetItems_should_map_outputpath_for_completed_or_failed_tasks() [TestCase(DownloadStationTaskStatus.Downloading, false, false)] [TestCase(DownloadStationTaskStatus.Finished, true, true)] - [TestCase(DownloadStationTaskStatus.Seeding, true, false)] + [TestCase(DownloadStationTaskStatus.Seeding, false, false)] [TestCase(DownloadStationTaskStatus.Waiting, false, false)] public void GetItems_should_return_canBeMoved_and_canBeDeleted_as_expected(DownloadStationTaskStatus apiStatus, bool canMoveFilesExpected, bool canBeRemovedExpected) {