1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-03-13 07:23:14 +00:00

Fix NZBGet Delete Status Copy test

This commit is contained in:
Mark McDowall 2019-07-25 16:48:03 -07:00 committed by Qstick
parent 5111e44984
commit cf4d52a996

View file

@ -277,16 +277,16 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.NzbgetTests
}
[Test]
public void should_skip_deletestatus_copy()
public void should_report_deletestatus_copy_as_failed()
{
_completed.DeleteStatus = "COPY";
GivenQueue(null);
GivenHistory(_completed);
var result = Subject.GetItems().SingleOrDefault();
var result = Subject.GetItems().Single();
result.Should().BeNull();
result.Status.Should().Be(DownloadItemStatus.Failed);
}
[Test]