diff options
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); })); |