summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorcarl <>2007-07-27 08:55:10 +0000
committercarl <>2007-07-27 08:55:10 +0000
commit162d442316c8a9e6c161b589f04332691e57c7f7 (patch)
tree39f7d361dac87925ead7e9bd24601f72f6cc40ef /tests
parentb16e5eb73a3ba50988757195d8bdfaf61995e85e (diff)
fixed typo in TCacheHttpSessionTest
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/Web/TCacheHttpSessionTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unit/Web/TCacheHttpSessionTest.php b/tests/unit/Web/TCacheHttpSessionTest.php
index 7d5523d6..77f336fa 100644
--- a/tests/unit/Web/TCacheHttpSessionTest.php
+++ b/tests/unit/Web/TCacheHttpSessionTest.php
@@ -90,14 +90,14 @@ class TCacheHttpSessionTest extends PHPUnit_Framework_TestCase
public function testCacheModuleID()
{
$id = 'value';
- self::$session->setCacheModuleID('value');
+ self::$session->setCacheModuleID($id);
self::assertEquals($id, self::$session->getCacheModuleID());
}
public function testKeyPrefix()
{
$id = 'value';
- self::$session->setKeyPrefix('value');
+ self::$session->setKeyPrefix($id);
self::assertEquals($id, self::$session->getKeyPrefix());
}