0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2024-09-19 18:55:19 +00:00

Bugfix: test overwrite another.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@248 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang 2006-08-14 04:01:05 +00:00
parent b8e6e16b5c
commit 9ac52b51dd

View File

@ -43,8 +43,8 @@ class HTMLPurifier_AttrTransform_TextAlignTest extends HTMLPurifier_AttrTransfor
$expect[7] = array('style' => 'text-align:left;font-weight:bold;');
// test case insensitivity
$inputs[4] = array('align' => 'CENTER');
$expect[4] = array('style' => 'text-align:center;');
$inputs[8] = array('align' => 'CENTER');
$expect[8] = array('style' => 'text-align:center;');
$this->assertTransform($inputs, $expect);