summaryrefslogtreecommitdiff
path: root/test/HTML5/TestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/HTML5/TestCase.php')
-rw-r--r--test/HTML5/TestCase.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/HTML5/TestCase.php b/test/HTML5/TestCase.php
index 7e98498..56d2eae 100644
--- a/test/HTML5/TestCase.php
+++ b/test/HTML5/TestCase.php
@@ -1,6 +1,7 @@
<?php
-namespace HTML5\Tests;
+namespace Masterminds\HTML5\Tests;
+use Masterminds\HTML5;
class TestCase extends \PHPUnit_Framework_TestCase {
const DOC_OPEN = '<!DOCTYPE html><html><head><title>test</title></head><body>';
const DOC_CLOSE = '</body></html>';
@@ -11,7 +12,7 @@ class TestCase extends \PHPUnit_Framework_TestCase {
public function getInstance(array $options = array())
{
- return new \HTML5($options);
+ return new HTML5($options);
}
protected function wrap($fragment) {