From 534230fd2206a90ee8d2ac1ba67eaf3347449bec Mon Sep 17 00:00:00 2001 From: thinkphp Date: Wed, 27 Jan 2016 16:07:21 +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/responseTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/thinkphp/library/think/responseTest.php b/tests/thinkphp/library/think/responseTest.php index b300f861..ad7925f2 100644 --- a/tests/thinkphp/library/think/responseTest.php +++ b/tests/thinkphp/library/think/responseTest.php @@ -172,7 +172,7 @@ class responseTest extends \PHPUnit_Framework_TestCase $this->assertEquals($code, $result["code"]); $this->assertEquals($msg, $result["msg"]); $this->assertEquals($data, $result["data"]); - $this->assertEquals($_SERVER['REQUEST_TIME_FLOAT'], $result["time"]); + $this->assertEquals($_SERVER['REQUEST_TIME'], $result["time"]); $this->assertEquals($type, \think\Response::type()); }