From 92fade57e4c2f0d4fb95cec94fb29a4f1854a06b Mon Sep 17 00:00:00 2001 From: Rostislav Wolny Date: Thu, 13 Feb 2020 12:15:36 +0100 Subject: [PATCH] Remove unnecessary inheritance in test helper [MAILPOET-2665] --- tests/unit/Form/HtmlParser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Form/HtmlParser.php b/tests/unit/Form/HtmlParser.php index 4b025e36ac..3021d4fd73 100644 --- a/tests/unit/Form/HtmlParser.php +++ b/tests/unit/Form/HtmlParser.php @@ -2,7 +2,7 @@ namespace MailPoet\Test\Form; -class HtmlParser extends \MailPoetUnitTest { +class HtmlParser { public function findByXpath(string $html, string $xpath): \DOMNodeList { $dom = new \DOMDocument(); $dom->loadHTML($html);