summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Hoyt <josh@janrain.com>2006-09-27 00:06:41 +0000
committerJosh Hoyt <josh@janrain.com>2006-09-27 00:06:41 +0000
commit62371f0ac98473ae1ea634db261a674d6d568d7e (patch)
treeaba5bf24c0dc9543a02575e655ac22784d4f91db
parentbd684948997f42e2d5ae02640f5dffbe96d5afe4 (diff)
downloadphp-openid-62371f0ac98473ae1ea634db261a674d6d568d7e.zip
php-openid-62371f0ac98473ae1ea634db261a674d6d568d7e.tar.gz
php-openid-62371f0ac98473ae1ea634db261a674d6d568d7e.tar.bz2
[project @ Close the database handle in SQLite store test to silence warning]
-rw-r--r--Tests/Auth/OpenID/StoreTest.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/Tests/Auth/OpenID/StoreTest.php b/Tests/Auth/OpenID/StoreTest.php
index 269ffb9..15fae93 100644
--- a/Tests/Auth/OpenID/StoreTest.php
+++ b/Tests/Auth/OpenID/StoreTest.php
@@ -465,6 +465,10 @@ explicitly');
$this->_testStore($store);
$this->_testNonce($store);
}
+
+ $db->disconnect();
+ unset($db);
+ unset($store);
unlink($temp_dir . '/file.db');
rmdir($temp_dir);
}