summaryrefslogtreecommitdiff
path: root/test/HTMLParserTest.php
diff options
context:
space:
mode:
authorAndres Rey <[email protected]>2017-11-09 19:38:30 +0000
committerAndres Rey <[email protected]>2017-11-09 19:38:30 +0000
commit13bda4ba14368589b65ddac75a3c85ad359e5d1a (patch)
treeef4d9d2d1891fa11f328dc8d426a789cc0c635bd /test/HTMLParserTest.php
parent422081a1003d3b5b668ddf7fb513a26f09b71b46 (diff)
Merge config instead of overwritting it during unit testing
Diffstat (limited to 'test/HTMLParserTest.php')
-rw-r--r--test/HTMLParserTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/HTMLParserTest.php b/test/HTMLParserTest.php
index d3e785a..c54dce8 100644
--- a/test/HTMLParserTest.php
+++ b/test/HTMLParserTest.php
@@ -17,7 +17,7 @@ class HTMLParserTest extends \PHPUnit_Framework_TestCase
];
if ($config) {
- $options = $config;
+ array_merge($options, $config);
}
$readability = new HTMLParser($options);