1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

And added a test for it.

This commit is contained in:
Taloth Saldono 2015-05-29 20:55:38 +02:00
parent 1cc6ad0d5f
commit a1ff7cbef0
2 changed files with 12 additions and 1 deletions

View File

@ -371,5 +371,16 @@ public void should_version_should_only_check_version_number(String version)
Subject.Test();
}
[TestCase(-1)] // Infinite/Unknown
[TestCase(-2)] // Magnet Downloading
public void should_ignore_negative_eta(int eta)
{
_completed.Eta = eta;
PrepareClientToReturnCompletedItem();
var item = Subject.GetItems().Single();
item.RemainingTime.Should().NotHaveValue();
}
}
}

View File

@ -117,7 +117,7 @@ public override IEnumerable<DownloadClientItem> GetItems()
item.OutputPath = outputPath + torrent.Name;
item.TotalSize = torrent.TotalSize;
item.RemainingSize = torrent.LeftUntilDone;
if (torrent.Eta != -1)
if (torrent.Eta >= 0)
{
item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta);
}