summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-11-02 09:08:52 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-11-02 09:08:52 -0800
commiteb09d067b45745892f2ac7ada14972f3ec9875a0 (patch)
tree07ab80358f7183d24cfb2649e6f016925fa0e622 /src/DotNetOpenAuth.Test
parentf4825f2770514e5a08d918a7c42390f385226459 (diff)
downloadDotNetOpenAuth-eb09d067b45745892f2ac7ada14972f3ec9875a0.zip
DotNetOpenAuth-eb09d067b45745892f2ac7ada14972f3ec9875a0.tar.gz
DotNetOpenAuth-eb09d067b45745892f2ac7ada14972f3ec9875a0.tar.bz2
Preparing to allow for RP discovery to yield more than just return_to endpoints.
Diffstat (limited to 'src/DotNetOpenAuth.Test')
-rw-r--r--src/DotNetOpenAuth.Test/Mocks/MockRealm.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/MockRealm.cs b/src/DotNetOpenAuth.Test/Mocks/MockRealm.cs
index 4e29bba..ae39ebb 100644
--- a/src/DotNetOpenAuth.Test/Mocks/MockRealm.cs
+++ b/src/DotNetOpenAuth.Test/Mocks/MockRealm.cs
@@ -35,7 +35,7 @@ namespace DotNetOpenAuth.Test.Mocks {
/// <returns>
/// The details of the endpoints if found, otherwise null.
/// </returns>
- internal override IEnumerable<RelyingPartyEndpointDescription> Discover(IDirectWebRequestHandler requestHandler, bool allowRedirects) {
+ internal override IEnumerable<RelyingPartyEndpointDescription> DiscoverReturnToEndpoints(IDirectWebRequestHandler requestHandler, bool allowRedirects) {
return this.relyingPartyDescriptions;
}
}