From d5c76a0f017663dcac852ef26f415e09732400b9 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 15 Oct 2015 09:28:10 -0400 Subject: [PATCH] Fix html view test for PHP < 7 --- tests/Ion/View/HtmlViewTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Ion/View/HtmlViewTest.php b/tests/Ion/View/HtmlViewTest.php index 8b29dd41..c850f6ef 100644 --- a/tests/Ion/View/HtmlViewTest.php +++ b/tests/Ion/View/HtmlViewTest.php @@ -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); }