diff options
author | carl <> | 2007-07-27 08:55:10 +0000 |
---|---|---|
committer | carl <> | 2007-07-27 08:55:10 +0000 |
commit | 162d442316c8a9e6c161b589f04332691e57c7f7 (patch) | |
tree | 39f7d361dac87925ead7e9bd24601f72f6cc40ef | |
parent | b16e5eb73a3ba50988757195d8bdfaf61995e85e (diff) |
fixed typo in TCacheHttpSessionTest
-rw-r--r-- | tests/unit/Web/TCacheHttpSessionTest.php | 4 |
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()); } |