summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ReadabilityTest.php2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/ReadabilityTest.php b/test/ReadabilityTest.php
index 95366bc..ca208e8 100644
--- a/test/ReadabilityTest.php
+++ b/test/ReadabilityTest.php
@@ -3,7 +3,6 @@
namespace andreskrey\Readability\Test;
use andreskrey\Readability\Configuration;
-use andreskrey\Readability\Nodes\DOM\DOMDocument;
use andreskrey\Readability\ParseException;
use andreskrey\Readability\Readability;
@@ -34,7 +33,6 @@ class ReadabilityTest extends \PHPUnit\Framework\TestCase
$readability = new Readability($configuration);
$readability->parse($testPage->getSourceHTML());
-// $this->assertXmlStringEqualsXmlString($testPage->getExpectedHTML(), $readability->getContent());
$this->assertSame($testPage->getExpectedHTML(), $readability->getContent(), 'Parsed text does not match the expected one.');
}