summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-01-11 14:33:59 +0100
committerAnatol Belski <ab@php.net>2018-01-11 14:33:59 +0100
commite3fda6e5f67e6e0d06027af82289319fe708a4fb (patch)
tree505c3b011482d591bb43f62dcd3f6c333e569924
parent7e1d2bd82af81e0d464d659d054756c577dece88 (diff)
parent83a77383b92d8b1b1a5c141c10e9342aa64b1d92 (diff)
downloadphp-git-e3fda6e5f67e6e0d06027af82289319fe708a4fb.tar.gz
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix test for libtidy 5.6.0
-rw-r--r--ext/tidy/tests/030.phpt5
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/tidy/tests/030.phpt b/ext/tidy/tests/030.phpt
index c351f9af15..46809a91c7 100644
--- a/ext/tidy/tests/030.phpt
+++ b/ext/tidy/tests/030.phpt
@@ -12,18 +12,15 @@ $buffer = '<html></html>';
$config = array(
'indent' => true, // AutoBool
'indent-attributes' => true, // Boolean
- 'indent-spaces' => 3, // Integer
- 'language' => 'de'); // String
+ 'indent-spaces' => 3); // Integer
$tidy = new tidy();
$tidy->parseString($buffer, $config);
$c = $tidy->getConfig();
var_dump($c['indent']);
var_dump($c['indent-attributes']);
var_dump($c['indent-spaces']);
-var_dump($c['language']);
?>
--EXPECTF--
int(1)
bool(true)
int(3)
-%s(2) "de"