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);
}