summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/OpenId/NonIdentityTests.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-21 07:07:13 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-21 07:07:13 -0700
commit579703ee02408e7d3cdd604aa263e95a6f1e49c3 (patch)
tree902569579db8c71de10bed7e2797ae8e5a735060 /src/DotNetOpenAuth.Test/OpenId/NonIdentityTests.cs
parentb53f5530fe1adbd5dccd6ff2743e8e2ba512eba2 (diff)
downloadDotNetOpenAuth-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/NonIdentityTests.cs')
-rw-r--r--src/DotNetOpenAuth.Test/OpenId/NonIdentityTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/OpenId/NonIdentityTests.cs b/src/DotNetOpenAuth.Test/OpenId/NonIdentityTests.cs
index 8764e69..16c096f 100644
--- a/src/DotNetOpenAuth.Test/OpenId/NonIdentityTests.cs
+++ b/src/DotNetOpenAuth.Test/OpenId/NonIdentityTests.cs
@@ -23,7 +23,7 @@ namespace DotNetOpenAuth.Test.OpenId {
Protocol protocol = Protocol.V20;
var mode = AuthenticationRequestMode.Setup;
- await CoordinatorBase.RunAsync(
+ await RunAsync(
RelyingPartyDriver(async (rp, ct) => {
var request = new SignedResponseRequest(protocol.Version, OPUri, mode);
var authRequest = await rp.Channel.PrepareResponseAsync(request);
@@ -44,7 +44,7 @@ namespace DotNetOpenAuth.Test.OpenId {
public async Task ExtensionOnlyFacadeLevel() {
Protocol protocol = Protocol.V20;
int opStep = 0;
- await CoordinatorBase.RunAsync(
+ await RunAsync(
RelyingPartyDriver(async (rp, ct) => {
var request = await rp.CreateRequestAsync(GetMockIdentifier(protocol.ProtocolVersion), RPRealmUri, RPUri, ct);