summaryrefslogtreecommitdiffstats
path: root/Tests/Auth/OpenID
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2007-03-07 17:37:04 +0000
committertailor <cygnus@janrain.com>2007-03-07 17:37:04 +0000
commitaa34bb782900e5bcbe90656bac8904ef5b4a3ee2 (patch)
treee2300a7ca3ea3647c9c009a505c8fd95c3b57b93 /Tests/Auth/OpenID
parent8e421ce7d9051927fa29b040a23528659833bbe0 (diff)
downloadphp-openid-aa34bb782900e5bcbe90656bac8904ef5b4a3ee2.zip
php-openid-aa34bb782900e5bcbe90656bac8904ef5b4a3ee2.tar.gz
php-openid-aa34bb782900e5bcbe90656bac8904ef5b4a3ee2.tar.bz2
[project @ Fix pass-by-reference for _extractAssociation]
Diffstat (limited to 'Tests/Auth/OpenID')
-rw-r--r--Tests/Auth/OpenID/AssociationResponse.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/Auth/OpenID/AssociationResponse.php b/Tests/Auth/OpenID/AssociationResponse.php
index a4763c8..e21ef73 100644
--- a/Tests/Auth/OpenID/AssociationResponse.php
+++ b/Tests/Auth/OpenID/AssociationResponse.php
@@ -55,7 +55,8 @@ class Tests_Auth_OpenID_AssociationResponse extends PHPUnit_TestCase {
function _run($keys)
{
$msg = mkAssocResponse($keys);
- $this->assertTrue(is_a($this->consumer->_extractAssociation($msg, null),
+ $dumb = null;
+ $this->assertTrue(is_a($this->consumer->_extractAssociation($msg, $dumb),
'Auth_OpenID_FailureResponse'));
}
}