From: Patrick Allaert Date: Wed, 16 Sep 2009 12:35:54 +0000 (+0000) Subject: Minor change to improve code coverage X-Git-Tag: php-5.4.0alpha1~191^2~2651 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56732c9f510900bebda40b9458987a8f5312c8d0;p=php Minor change to improve code coverage --- 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"