diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-21 07:07:13 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-03-21 07:07:13 -0700 |
commit | 579703ee02408e7d3cdd604aa263e95a6f1e49c3 (patch) | |
tree | 902569579db8c71de10bed7e2797ae8e5a735060 /src/DotNetOpenAuth.Test/OpenId/ChannelElements | |
parent | b53f5530fe1adbd5dccd6ff2743e8e2ba512eba2 (diff) | |
download | DotNetOpenAuth-579703ee02408e7d3cdd604aa263e95a6f1e49c3.zip DotNetOpenAuth-579703ee02408e7d3cdd604aa263e95a6f1e49c3.tar.gz DotNetOpenAuth-579703ee02408e7d3cdd604aa263e95a6f1e49c3.tar.bz2 |
Moves the rest of the static methods out.
Diffstat (limited to 'src/DotNetOpenAuth.Test/OpenId/ChannelElements')
-rw-r--r-- | src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs index ca9b0a7..7a1add2 100644 --- a/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs +++ b/src/DotNetOpenAuth.Test/OpenId/ChannelElements/ExtensionsBindingElementTests.cs @@ -142,7 +142,7 @@ namespace DotNetOpenAuth.Test.OpenId.ChannelElements { } } }, - CoordinatorBase.Handle(RPRealmUri).By(async (hostFactories, req, ct) => { + Handle(RPRealmUri).By(async (hostFactories, req, ct) => { var rp = new OpenIdRelyingParty(new StandardRelyingPartyApplicationStore(), hostFactories); RegisterMockExtension(rp.Channel); @@ -164,7 +164,7 @@ namespace DotNetOpenAuth.Test.OpenId.ChannelElements { return new HttpResponseMessage(); }), - CoordinatorBase.Handle(OPUri).By(async (hostFactories, req, ct) => { + Handle(OPUri).By(async (hostFactories, req, ct) => { var op = new OpenIdProvider(opStore); return await AutoProviderActionAsync(op, req, ct); })); |