diff options
-rw-r--r-- | samples/Consumer/App_Code/Constants.cs | 4 | ||||
-rw-r--r-- | src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/samples/Consumer/App_Code/Constants.cs b/samples/Consumer/App_Code/Constants.cs index ecf76a8..b5b8abf 100644 --- a/samples/Consumer/App_Code/Constants.cs +++ b/samples/Consumer/App_Code/Constants.cs @@ -18,8 +18,8 @@ public static class Constants { UserAuthorizationEndpoint = new MessageReceivingEndpoint("https://www.google.com/accounts/OAuthAuthorizeToken", HttpDeliveryMethod.AuthorizationHeaderRequest),
AccessTokenEndpoint = new MessageReceivingEndpoint("https://www.google.com/accounts/OAuthGetAccessToken", HttpDeliveryMethod.AuthorizationHeaderRequest),
TamperProtectionElements = new ITamperProtectionChannelBindingElement[] {
- new HmacSha1SigningBindingElement(),
- },
+ new HmacSha1SigningBindingElement(),
+ },
};
/// <summary>
diff --git a/src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs b/src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs index deee700..f6273da 100644 --- a/src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs +++ b/src/DotNetOAuth.Test/Scenarios/AppendixScenarios.cs @@ -62,8 +62,8 @@ namespace DotNetOAuth.Test { channel.SendDirectRawResponse(new Response {
ResponseStream = new MemoryStream(new byte[] { 0x33, 0x66 }),
Headers = new WebHeaderCollection {
- { HttpResponseHeader.ContentType, "image/jpeg" },
- },
+ { HttpResponseHeader.ContentType, "image/jpeg" },
+ },
});
});
coordinator.SigningElement = (ITamperProtectionChannelBindingElement)sp.Channel.BindingElements.Single(el => el is ITamperProtectionChannelBindingElement);
|