? modules/openid/translations Index: modules/openid/openid.test =================================================================== RCS file: /cvs/drupal/drupal/modules/openid/openid.test,v retrieving revision 1.23 diff -u -p -r1.23 openid.test --- modules/openid/openid.test 13 May 2010 17:37:24 -0000 1.23 +++ modules/openid/openid.test 19 May 2010 14:32:15 -0000 @@ -67,7 +67,7 @@ class OpenIDFunctionalTestCase extends O // The URL scheme is stripped in order to test that the supplied identifier // is normalized in openid_begin(). $identity = url('openid-test/yadis/xrds', array('absolute' => TRUE)); - $this->addIdentity(preg_replace('@^https?://@', '', $identity), 2, $identity); + $this->addIdentity(preg_replace('@^http?://@', '', $identity), 2, $identity); // Identifier is the URL of an XRDS document containing an OP Identifier // Element. The Relying Party sends the special value @@ -77,7 +77,7 @@ class OpenIDFunctionalTestCase extends O // Tell openid_test.module to respond with this identifier. The URL scheme // is stripped in order to test that the returned identifier is normalized in // openid_complete(). - variable_set('openid_test_response', array('openid.claimed_id' => preg_replace('@^https?://@', '', $identity))); + variable_set('openid_test_response', array('openid.claimed_id' => preg_replace('@^http?://@', '', $identity))); $this->addIdentity(url('openid-test/yadis/xrds/server', array('absolute' => TRUE)), 2, $identity); variable_set('openid_test_response', array());