Commit b455f2c9 by Qiang Xue

Fixed test break.

parent ba0da059
......@@ -7,8 +7,6 @@
namespace yii\base;
use yii\web\Response;
/**
* HttpException represents an exception caused by an improper request of the end-user.
......@@ -45,8 +43,8 @@ class HttpException extends UserException
*/
public function getName()
{
if (isset(Response::$statusTexts[$this->statusCode])) {
return Response::$statusTexts[$this->statusCode];
if (isset(\yii\web\Response::$statusTexts[$this->statusCode])) {
return \yii\web\Response::$statusTexts[$this->statusCode];
} else {
return 'Error';
}
......
......@@ -32,6 +32,7 @@ class ResponseTest extends \yiiunit\TestCase
protected function setUp()
{
parent::setUp();
$this->mockApplication();
$this->reset();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment