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:
parent
5111e44984
commit
cf4d52a996
1 changed files with 3 additions and 3 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Reference in a new issue