summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
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());
}