patrickallaert Wed, 16 Sep 2009 12:35:54 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=288371
Log:
Minor change to improve code coverage
Changed paths:
U php/php-src/trunk/ext/tidy/tests/030.phpt
Modified: php/php-src/trunk/ext/tidy/tests/030.phpt
===================================================================
--- php/php-src/trunk/ext/tidy/tests/030.phpt 2009-09-16 10:53:40 UTC (rev
288370)
+++ php/php-src/trunk/ext/tidy/tests/030.phpt 2009-09-16 12:35:54 UTC (rev
288371)
@@ -11,19 +11,19 @@
$buffer = '<html></html>';
$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"
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php