diff options
author | tailor <cygnus@janrain.com> | 2007-04-05 21:11:44 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2007-04-05 21:11:44 +0000 |
commit | 1f3ced1ec2d5487f589ddcb107bd4ed9639fa0c0 (patch) | |
tree | a28dd97bba36febc2ade0d1b4fdf1f1cc9530f12 /Tests | |
parent | 9cba459502c81c7952e9eab9ca73928433a2ec7b (diff) | |
download | php-openid-1f3ced1ec2d5487f589ddcb107bd4ed9639fa0c0.zip php-openid-1f3ced1ec2d5487f589ddcb107bd4ed9639fa0c0.tar.gz php-openid-1f3ced1ec2d5487f589ddcb107bd4ed9639fa0c0.tar.bz2 |
[project @ Fix 2.0 IDP NS URI]
Diffstat (limited to 'Tests')
5 files changed, 5 insertions, 5 deletions
diff --git a/Tests/Auth/OpenID/Consumer.php b/Tests/Auth/OpenID/Consumer.php index 49913c4..b6a64f4 100644 --- a/Tests/Auth/OpenID/Consumer.php +++ b/Tests/Auth/OpenID/Consumer.php @@ -1770,7 +1770,7 @@ class IDPDrivenTest extends PHPUnit_TestCase { $this->consumer = new Auth_OpenID_GenericConsumer($this->store); $this->endpoint = new Auth_OpenID_ServiceEndpoint(); $this->endpoint->server_url = "http://idp.unittest/"; - $this->endpoint->type_uris = array('http://openid.net/server/2.0'); + $this->endpoint->type_uris = array('http://specs.openid.net/auth/2.0/server'); } function test_idpDrivenBegin() diff --git a/Tests/Auth/OpenID/data/test_discover_yadis_2entries_idp.xml b/Tests/Auth/OpenID/data/test_discover_yadis_2entries_idp.xml index f1714cc..daef25b 100644 --- a/Tests/Auth/OpenID/data/test_discover_yadis_2entries_idp.xml +++ b/Tests/Auth/OpenID/data/test_discover_yadis_2entries_idp.xml @@ -13,7 +13,7 @@ </Service> <Service priority="20"> - <Type>http://openid.net/server/2.0</Type> + <Type>http://specs.openid.net/auth/2.0/server</Type> <URI>http://www.livejournal.com/openid/server.bml</URI> </Service> diff --git a/Tests/Auth/OpenID/data/test_discover_yadis_idp.xml b/Tests/Auth/OpenID/data/test_discover_yadis_idp.xml index 3d7ed98..f570d04 100644 --- a/Tests/Auth/OpenID/data/test_discover_yadis_idp.xml +++ b/Tests/Auth/OpenID/data/test_discover_yadis_idp.xml @@ -5,7 +5,7 @@ > <XRD> <Service priority="10"> - <Type>http://openid.net/server/2.0</Type> + <Type>http://specs.openid.net/auth/2.0/server</Type> <URI>http://www.myopenid.com/server</URI> </Service> </XRD> diff --git a/Tests/Auth/OpenID/data/test_discover_yadis_idp_delegate.xml b/Tests/Auth/OpenID/data/test_discover_yadis_idp_delegate.xml index f94c0df..5410600 100644 --- a/Tests/Auth/OpenID/data/test_discover_yadis_idp_delegate.xml +++ b/Tests/Auth/OpenID/data/test_discover_yadis_idp_delegate.xml @@ -5,7 +5,7 @@ > <XRD> <Service> - <Type>http://openid.net/server/2.0</Type> + <Type>http://specs.openid.net/auth/2.0/server</Type> <URI>http://www.myopenid.com/server</URI> <openid:Delegate>http://smoker.myopenid.com/</openid:Delegate> </Service> diff --git a/Tests/Auth/OpenID/data/test_discover_yadis_idp_last.xml b/Tests/Auth/OpenID/data/test_discover_yadis_idp_last.xml index 20d3a19..aa89589 100644 --- a/Tests/Auth/OpenID/data/test_discover_yadis_idp_last.xml +++ b/Tests/Auth/OpenID/data/test_discover_yadis_idp_last.xml @@ -10,7 +10,7 @@ </Service> <Service priority="20"> - <Type>http://openid.net/server/2.0</Type> + <Type>http://specs.openid.net/auth/2.0/server</Type> <URI>http://www.myopenid.com/server_id</URI> </Service> </XRD> |