summaryrefslogtreecommitdiff
path: root/ext/tidy
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2018-01-11 14:34:28 +0100
committerAnatol Belski <ab@php.net>2018-01-11 14:34:28 +0100
commitda8204ba1c5e688164b14bd914900df7b84047cb (patch)
tree9e69129eb8236ef465fdd415a277909ef0840c07 /ext/tidy
parent781e1573afdc7c336b3577ceabc9c65cafea17e8 (diff)
parente3fda6e5f67e6e0d06027af82289319fe708a4fb (diff)
downloadphp-git-da8204ba1c5e688164b14bd914900df7b84047cb.tar.gz
Merge branch 'PHP-7.2'
* PHP-7.2: Fix test for libtidy 5.6.0
Diffstat (limited to 'ext/tidy')
-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"