1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 13:34:54 +00:00

Fixed compilation issue

This commit is contained in:
Mark McDowall 2013-11-19 22:00:34 -08:00
parent 4a7bd5b849
commit ab4e1edac0

View file

@ -180,7 +180,7 @@ public void downloadNzb_should_use_sabRecentTvPriority_when_recentEpisode_is_tru
Mocker.GetMock<ISabCommunicationProxy>()
.Setup(s => s.DownloadNzb(It.IsAny<Stream>(), It.IsAny<String>(), It.IsAny<String>(), (int)SabPriorityType.High))
.Returns("{ \"status\": \"true\", \"nzo_ids\": [ \"sab_id_goes_here\" ] }");
.Returns(new SabAddResponse());
Subject.DownloadNzb(_remoteEpisode);