From cdde8cfdbe9a0b122c6968a5cc7c29edce95782d Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Mon, 8 Apr 2019 22:47:56 -0700 Subject: [PATCH] Protocol instead of download protocol --- src/NzbDrone.Integration.Test/ApiTests/ReleasePushFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Integration.Test/ApiTests/ReleasePushFixture.cs b/src/NzbDrone.Integration.Test/ApiTests/ReleasePushFixture.cs index a4ed384c8..e222e046e 100644 --- a/src/NzbDrone.Integration.Test/ApiTests/ReleasePushFixture.cs +++ b/src/NzbDrone.Integration.Test/ApiTests/ReleasePushFixture.cs @@ -17,7 +17,7 @@ namespace NzbDrone.Integration.Test.ApiTests var body = new Dictionary(); body.Add("guid", "sdfsdfsdf"); body.Add("title", "The.Series.S01E01"); - body.Add("downloadProtocol", 2); + body.Add("protocol", "Torrent"); body.Add("downloadUrl", "https://sonarr.tv/test.torrent"); body.Add("publishDate", DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ssZ", CultureInfo.InvariantCulture));