summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsmir Mustafic <[email protected]>2018-11-24 19:57:38 +0100
committerGitHub <[email protected]>2018-11-24 19:57:38 +0100
commitc76378a560eeefa900429989fb6e85859f3a6b5e (patch)
tree203f9c61603c1528e13b1a3507c88b3624e792c9
parentc5dba6d2a1a55e20ad00832fb5b0b3db3704874d (diff)
parent9d0eac40619c9771bd633c6d47fb6500148ed8c4 (diff)
Merge pull request #159 from samnela/remove-deprecated-testcase
Remove deprecated testcase implementation
-rw-r--r--test/HTML5/TestCase.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/HTML5/TestCase.php b/test/HTML5/TestCase.php
index 3cb8645..2f220b1 100644
--- a/test/HTML5/TestCase.php
+++ b/test/HTML5/TestCase.php
@@ -2,8 +2,9 @@
namespace Masterminds\HTML5\Tests;
use Masterminds\HTML5;
+use PHPUnit\Framework\TestCase as BaseTestCase;
-class TestCase extends \PHPUnit_Framework_TestCase
+class TestCase extends BaseTestCase
{
const DOC_OPEN = '<!DOCTYPE html><html><head><title>test</title></head><body>';