diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-20 19:19:43 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-04-20 19:19:43 -0700 |
commit | f96aede4f5a964c8edc56e364dbe0acd2b571b8f (patch) | |
tree | 6500c3947274c5f306c14917493be3e3fb4f150c /src | |
parent | c0e019b7ff53df92f76b325d28a931b9036ab73a (diff) | |
download | DotNetOpenAuth-f96aede4f5a964c8edc56e364dbe0acd2b571b8f.zip DotNetOpenAuth-f96aede4f5a964c8edc56e364dbe0acd2b571b8f.tar.gz DotNetOpenAuth-f96aede4f5a964c8edc56e364dbe0acd2b571b8f.tar.bz2 |
Fixed several failing unit tests due to their non-support for network credential simulations.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth.Test/OAuth2/OAuth2Coordinator.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/OAuth2/OAuth2Coordinator.cs b/src/DotNetOpenAuth.Test/OAuth2/OAuth2Coordinator.cs index 1223fe7..6494585 100644 --- a/src/DotNetOpenAuth.Test/OAuth2/OAuth2Coordinator.cs +++ b/src/DotNetOpenAuth.Test/OAuth2/OAuth2Coordinator.cs @@ -35,7 +35,7 @@ namespace DotNetOpenAuth.Test.OAuth2 { this.client = client; this.client.ClientIdentifier = OAuth2TestBase.ClientId; - this.client.ClientCredentialApplicator = ClientCredentialApplicator.NetworkCredential(OAuth2TestBase.ClientSecret); + this.client.ClientCredentialApplicator = ClientCredentialApplicator.PostParameter(OAuth2TestBase.ClientSecret); } internal override void Run() { |