Browse Source

Fixed test break.

tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
b455f2c97a
  1. 6
      framework/yii/base/HttpException.php
  2. 1
      tests/unit/framework/web/ResponseTest.php

6
framework/yii/base/HttpException.php

@ -7,8 +7,6 @@
namespace yii\base; namespace yii\base;
use yii\web\Response;
/** /**
* HttpException represents an exception caused by an improper request of the end-user. * HttpException represents an exception caused by an improper request of the end-user.
@ -45,8 +43,8 @@ class HttpException extends UserException
*/ */
public function getName() public function getName()
{ {
if (isset(Response::$statusTexts[$this->statusCode])) { if (isset(\yii\web\Response::$statusTexts[$this->statusCode])) {
return Response::$statusTexts[$this->statusCode]; return \yii\web\Response::$statusTexts[$this->statusCode];
} else { } else {
return 'Error'; return 'Error';
} }

1
tests/unit/framework/web/ResponseTest.php

@ -32,6 +32,7 @@ class ResponseTest extends \yiiunit\TestCase
protected function setUp() protected function setUp()
{ {
parent::setUp(); parent::setUp();
$this->mockApplication();
$this->reset(); $this->reset();
} }

Loading…
Cancel
Save