summaryrefslogtreecommitdiff
path: root/modules/gallery/tests/Cache_Test.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-06-29 20:53:55 -0700
committerBharat Mediratta <bharat@menalto.com>2009-06-29 20:53:55 -0700
commit77a78b49909f9d2ca598871f0588497837cb9f6a (patch)
tree0cbeb749b6f8847b1c31a3c5e194dfee41e3913a /modules/gallery/tests/Cache_Test.php
parentdf17d576ab111b2a71337e486f9631eb16bad4b6 (diff)
Revert to serializing and deserializing data. The cache table can't
accept PHP constructs like arrays (the tests were choking on this). Update tests to reflect the new `key` column.
Diffstat (limited to 'modules/gallery/tests/Cache_Test.php')
-rw-r--r--modules/gallery/tests/Cache_Test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/tests/Cache_Test.php b/modules/gallery/tests/Cache_Test.php
index a5e0e7a0..6b525265 100644
--- a/modules/gallery/tests/Cache_Test.php
+++ b/modules/gallery/tests/Cache_Test.php
@@ -30,7 +30,7 @@ class Cache_Test extends Unit_Test_Case {
$this->assert_false($this->_driver->exists("test_key"), "test_key should not be defined");
$id = md5(rand());
- $db->insert("caches", array("id" => $id, "tags" => "<tag1>, <tag2>",
+ $db->insert("caches", array("key" => $id, "tags" => "<tag1>, <tag2>",
"expiration" => 84600 + time(),
"cache" => serialize("some test data")));
@@ -41,7 +41,7 @@ class Cache_Test extends Unit_Test_Case {
$db = Database::instance();
$id = md5(rand());
- $db->insert("caches", array("id" => $id, "tags" => "<tag1>, <tag2>",
+ $db->insert("caches", array("key" => $id, "tags" => "<tag1>, <tag2>",
"expiration" => 84600 + time(),
"cache" => serialize("some test data")));