diff --git a/src/main/php/unittest/web/WebTestCase.class.php b/src/main/php/unittest/web/WebTestCase.class.php
index 1bfa3ef..7587346 100755
--- a/src/main/php/unittest/web/WebTestCase.class.php
+++ b/src/main/php/unittest/web/WebTestCase.class.php
@@ -78,7 +78,6 @@ public function getDom() {
} else {
@$this->dom->loadHTMLFile(Streams::readableUri($this->response->getInputStream()));
}
- var_dump($this->dom->actualEncoding);
}
return $this->dom;
}
diff --git a/src/test/php/unittest/web/tests/EncodingTest.class.php b/src/test/php/unittest/web/tests/EncodingTest.class.php
index 9730223..145094b 100755
--- a/src/test/php/unittest/web/tests/EncodingTest.class.php
+++ b/src/test/php/unittest/web/tests/EncodingTest.class.php
@@ -29,11 +29,8 @@ static function __static() {
/** @return var[][] */
private function fixtures() {
return [
- [sprintf(self::$FIXTURE, '')],
[sprintf(self::$FIXTURE, '')],
- [sprintf(utf8_decode(self::$FIXTURE), '')],
- [sprintf(utf8_decode(self::$FIXTURE), '')],
- [sprintf(self::$FIXTURE, '')]
+ [sprintf(utf8_decode(self::$FIXTURE), '')]
];
}