From 1f40eed301bbd4914d46f528cb6b09eae41800fa Mon Sep 17 00:00:00 2001 From: thinkphp Date: Sat, 23 Apr 2016 20:44:17 +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/appTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/thinkphp/library/think/appTest.php b/tests/thinkphp/library/think/appTest.php index aef15c8117..ddf47076fa 100644 --- a/tests/thinkphp/library/think/appTest.php +++ b/tests/thinkphp/library/think/appTest.php @@ -59,9 +59,9 @@ public function testRun() $ns->setAccessible(true); $this->assertEquals(true, in_array('/path/', $ns->getValue())); - $this->assertEquals(true, function_exists('L')); - $this->assertEquals(true, function_exists('C')); - $this->assertEquals(true, function_exists('I')); + $this->assertEquals(true, function_exists('lang')); + $this->assertEquals(true, function_exists('config')); + $this->assertEquals(true, function_exists('input')); $this->assertEquals(Config::get('default_timezone'), date_default_timezone_get());