From 56732c9f510900bebda40b9458987a8f5312c8d0 Mon Sep 17 00:00:00 2001 From: Patrick Allaert Date: Wed, 16 Sep 2009 12:35:54 +0000 Subject: [PATCH] Minor change to improve code coverage --- ext/tidy/tests/030.phpt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/tidy/tests/030.phpt b/ext/tidy/tests/030.phpt index c351f9af15..a4589c9546 100644 --- a/ext/tidy/tests/030.phpt +++ b/ext/tidy/tests/030.phpt @@ -11,19 +11,19 @@ Christian Wenz $buffer = ''; $config = array( 'indent' => true, // AutoBool - 'indent-attributes' => true, // Boolean + 'markup' => false, // Boolean 'indent-spaces' => 3, // Integer 'language' => 'de'); // String $tidy = new tidy(); $tidy->parseString($buffer, $config); $c = $tidy->getConfig(); var_dump($c['indent']); -var_dump($c['indent-attributes']); +var_dump($c['markup']); var_dump($c['indent-spaces']); var_dump($c['language']); ?> --EXPECTF-- int(1) -bool(true) +bool(false) int(3) %s(2) "de" -- 2.50.1