From dd7ea2fad5eb83f8cafacb81c4a142259f0cdd41 Mon Sep 17 00:00:00 2001 From: thinkphp Date: Tue, 21 Nov 2017 17:15:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E5=8D=95=E5=85=83=E6=B5=8B?= =?UTF-8?q?=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/thinkphp/library/think/cache/driver/redisTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/thinkphp/library/think/cache/driver/redisTest.php b/tests/thinkphp/library/think/cache/driver/redisTest.php index a5a36d40..f61b9ed3 100644 --- a/tests/thinkphp/library/think/cache/driver/redisTest.php +++ b/tests/thinkphp/library/think/cache/driver/redisTest.php @@ -57,7 +57,7 @@ class redisTest extends cacheTestCase $redis->handler()->hset('hash', 'key', 'value'); $value = $redis->handler()->hget('hash', 'key'); - $this->assertEquals('s:5:"value";', $value); + $this->assertEquals('value', $value); } public function testExpire()