diff options
author | tailor <cygnus@janrain.com> | 2008-02-20 21:39:56 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2008-02-20 21:39:56 +0000 |
commit | 003d4eb98add3385978d4e5720da1b98acb81510 (patch) | |
tree | 17dca29940d844a8aa018abd218dc457bbc182d7 | |
parent | ea2469c5f8fe68b71fef8a2f5eb48b87d3713c5e (diff) | |
download | php-openid-003d4eb98add3385978d4e5720da1b98acb81510.zip php-openid-003d4eb98add3385978d4e5720da1b98acb81510.tar.gz php-openid-003d4eb98add3385978d4e5720da1b98acb81510.tar.bz2 |
[project @ Remove "warning" text from output of store tests]
-rw-r--r-- | Tests/Auth/OpenID/StoreTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/Auth/OpenID/StoreTest.php b/Tests/Auth/OpenID/StoreTest.php index 5a0bb07..87ef56e 100644 --- a/Tests/Auth/OpenID/StoreTest.php +++ b/Tests/Auth/OpenID/StoreTest.php @@ -470,7 +470,7 @@ explicitly'); if (!(extension_loaded('pgsql') || @dl('pgsql.so') || @dl('php_pgsql.dll'))) { - print "Warning: not testing PostGreSQL store"; + print "(not testing PostGreSQL store)"; $this->pass(); return; } @@ -590,7 +590,7 @@ explicitly'); if (!(extension_loaded('sqlite') || @dl('sqlite.so') || @dl('php_sqlite.dll'))) { - print "Warning: not testing SQLite store"; + print "(not testing SQLite store)"; $this->pass(); return; } @@ -634,7 +634,7 @@ explicitly'); // because we can't run the test. if (!(extension_loaded('mysql') || @dl('mysql.' . PHP_SHLIB_SUFFIX))) { - print "Warning: not testing MySQL store"; + print "(not testing MySQL store)"; $this->pass(); return; } |