From f416386bd335c4e39e9aa713eb856cc36916f13d Mon Sep 17 00:00:00 2001 From: thinkphp Date: Sun, 28 Feb 2016 20:09:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/thinkphp/library/think/cache/driver/cacheTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/thinkphp/library/think/cache/driver/cacheTestCase.php b/tests/thinkphp/library/think/cache/driver/cacheTestCase.php index 09704fc8..328296d3 100644 --- a/tests/thinkphp/library/think/cache/driver/cacheTestCase.php +++ b/tests/thinkphp/library/think/cache/driver/cacheTestCase.php @@ -157,6 +157,6 @@ abstract class cacheTestCase extends \PHPUnit_Framework_TestCase { $this->assertTrue(Cache::set('a', 'a')); $this->assertEquals('a', Cache::get('a')); - $this->assertTrue(Cache::rm('a')); + $this->assertNotNull(Cache::rm('a')); } }