summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Tests/Auth/OpenID/StoreTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/Auth/OpenID/StoreTest.php b/Tests/Auth/OpenID/StoreTest.php
index 2cfd741..deb7e4c 100644
--- a/Tests/Auth/OpenID/StoreTest.php
+++ b/Tests/Auth/OpenID/StoreTest.php
@@ -564,7 +564,7 @@ explicitly');
return null;
}
- $dsn = sprintf("sqlite:///%s/file.db", $temp_dir);
+ $dsn = 'sqlite:///' . urlencode($temp_dir) . '/php_openid_storetest.db';
$db =& DB::connect($dsn);
if (PEAR::isError($db)) {