summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortailor <cygnus@janrain.com>2006-01-05 00:43:18 +0000
committertailor <cygnus@janrain.com>2006-01-05 00:43:18 +0000
commit9984c8ca29971fb8a47dffd762672fe8e7cb5475 (patch)
tree0a4bf0217bb8d441e6884dd23fc03e1b8db28da1
parent98eba54f8edd13044ebce95e56af15f9a8b5c332 (diff)
downloadphp-openid-9984c8ca29971fb8a47dffd762672fe8e7cb5475.zip
php-openid-9984c8ca29971fb8a47dffd762672fe8e7cb5475.tar.gz
php-openid-9984c8ca29971fb8a47dffd762672fe8e7cb5475.tar.bz2
[project @ Fixed brace style in TestDriver]
-rw-r--r--Tests/TestDriver.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tests/TestDriver.php b/Tests/TestDriver.php
index a7b6f09..871575c 100644
--- a/Tests/TestDriver.php
+++ b/Tests/TestDriver.php
@@ -98,7 +98,8 @@ $_test_names = array(
'StoreTest',
);
-function selectTests($names) {
+function selectTests($names)
+{
global $_test_names;
$lnames = array_map('strtolower', $names);
$include = array();
@@ -122,7 +123,8 @@ function selectTests($names) {
}
// Load OpenID library tests
-function loadSuite() {
+function loadSuite($names=null)
+{
global $_test_names;
global $_test_dir;
if ($names === null) {