Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenba committed Apr 22, 2016
2 parents d9c53a7 + 8002161 commit 34a3822
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class UrlHelper
private const string _webMatrixCuratedFeedUrlSuffix = "curated-feeds/webmatrix/";
private const string _dotnetCuratedFeedUrlSuffix = "curated-feeds/microsoftdotnet/";
private const string _accountPageUrlSuffix = "/account";
private const string _accountUnscribeUrlSuffix = "account/unsubscribe";
private const string _accountUnscribeUrlSuffix = "account/subscription/change";
private const string _accountApiKeyResetUrlSuffix = "/account/GenerateApiKey";
private const string _manageMyPackagesUrlSuffix = "/account/Packages";
private const string _aboutPageUrlSuffix = "policies/About";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public override IEnumerator<WebTestRequest> GetRequestEnumerator()
unsubscribeRequest.ExpectedHttpStatusCode = 503;
var unsubscribeRequestBody = new FormPostHttpBody();
unsubscribeRequestBody.FormPostParameters.Add("__RequestVerificationToken", Context["$HIDDEN1.__RequestVerificationToken"].ToString());
unsubscribeRequestBody.FormPostParameters.Add("emailAllowed", "false");
unsubscribeRequest.Body = unsubscribeRequestBody;

// Check for read-only status.
Expand Down

0 comments on commit 34a3822

Please sign in to comment.