Fix html view test for PHP < 7

This commit is contained in:
Timothy Warren 2015-10-15 09:28:10 -04:00
parent 485ba46838
commit d5c76a0f01
1 changed files with 2 additions and 1 deletions

View File

@ -31,11 +31,12 @@ class TestHtmlView extends HtmlView {
class HtmlViewTest extends ViewTest {
protected $template_path = __DIR__ . "/../../test_views/";
protected $template_path;
public function setUp()
{
parent::setUp();
$this->template_path = __DIR__ . "/../../test_views/";
$this->view = new TestHtmlView($this->container);
}