summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2006-01-07 00:42:29 +0000
committertailor <cygnus@janrain.com>2006-01-07 00:42:29 +0000
commit5b882e437563aab516d9737ad82d6206b986d325 (patch)
treebd825cbe22c520275794dab8e4bb4dc993e27f29
parenta8f19ae921440b566388e58183b9f6f6097d29a9 (diff)
downloadphp-openid-5b882e437563aab516d9737ad82d6206b986d325.zip
php-openid-5b882e437563aab516d9737ad82d6206b986d325.tar.gz
php-openid-5b882e437563aab516d9737ad82d6206b986d325.tar.bz2
[project @ Doc fixes]
-rw-r--r--Tests/Net/OpenID/StoreTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/Tests/Net/OpenID/StoreTest.php b/Tests/Net/OpenID/StoreTest.php
index ed4d882..e5dda40 100644
--- a/Tests/Net/OpenID/StoreTest.php
+++ b/Tests/Net/OpenID/StoreTest.php
@@ -73,7 +73,7 @@ class Tests_Net_OpenID_StoreTest extends PHPUnit_TestCase {
$hdl = Net_OpenID_CryptUtil::randomString(128, $this->allowed_handle);
return new Net_OpenID_Association($hdl, $sec, $now + $issued, $lifetime,
'HMAC-SHA1');
- }
+ }
function _checkRetrieve(&$store, $url, $handle, $expected, $name=null)
{
@@ -216,8 +216,8 @@ explicitly');
// A nonce is not present by default
$this->_checkUseNonce($store, $nonce1, false);
- // Storing once causes useNonce to return true the first, and only
- // the first, time it is called after the $store->
+ // Storing once causes useNonce to return true the first, and
+ // only the first, time it is called after the $store->
$store->storeNonce($nonce1);
$this->_checkUseNonce($store, $nonce1, true);
$this->_checkUseNonce($store, $nonce1, false);
@@ -230,8 +230,8 @@ explicitly');
// Auth key functions
- // There is no key to start with, so generate a new key and return
- // it.
+ // There is no key to start with, so generate a new key and
+ // return it.
$key = $store->getAuthKey();
// The second time around should return the same as last time.