diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-18 16:35:15 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-06-18 16:35:15 -0700 |
commit | 9e430539d74fa908cd54901e611eb87533f07b3e (patch) | |
tree | 9a36fc810bce02df69b447768f1b39eeaf490acc /src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs | |
parent | 340ca34a634dc19ee03a2dd824efd274b92cc45b (diff) | |
parent | c071c9469d444ba356840b4ae0bc07b617147480 (diff) | |
download | DotNetOpenAuth-9e430539d74fa908cd54901e611eb87533f07b3e.zip DotNetOpenAuth-9e430539d74fa908cd54901e611eb87533f07b3e.tar.gz DotNetOpenAuth-9e430539d74fa908cd54901e611eb87533f07b3e.tar.bz2 |
Merge branch 'v3.1'
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs b/src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs index 2d14bc8..10b0261 100644 --- a/src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs +++ b/src/DotNetOpenAuth.Test/Mocks/CoordinatingOAuthChannel.cs @@ -110,7 +110,7 @@ namespace DotNetOpenAuth.Test.Mocks { if (signedMessage != null) { string httpMethod = this.GetHttpMethod(signedMessage.HttpMethods); requestInfo.HttpMethod = httpMethod; - requestInfo.Url = message.Recipient; + requestInfo.UrlBeforeRewriting = message.Recipient; signedMessage.HttpMethod = httpMethod; } |