diff --git a/test/libraries/common/PMA_getIcon_test.php b/test/libraries/common/PMA_getIcon_test.php index 7835acabd7..b64ef539c0 100644 --- a/test/libraries/common/PMA_getIcon_test.php +++ b/test/libraries/common/PMA_getIcon_test.php @@ -30,7 +30,7 @@ class PMA_getIcon_test extends PHPUnit_Framework_TestCase{ $GLOBALS['pmaThemeImage'] = 'theme/'; $this->assertEquals('', + . 'dot.gif" title="" alt="" class="icon ic_b_comment" />', PMA_getIcon('b_comment.png') ); } @@ -41,8 +41,8 @@ class PMA_getIcon_test extends PHPUnit_Framework_TestCase{ $alternate_text = 'alt_str'; $this->assertEquals('' . $alternate_text
-                            . '', + .'dot.gif" title="' . $alternate_text . '" alt="' . $alternate_text + . '" class="icon ic_b_comment" />', PMA_getIcon('b_comment.png',$alternate_text) ); } @@ -53,8 +53,8 @@ class PMA_getIcon_test extends PHPUnit_Framework_TestCase{ $alternate_text = 'alt_str'; $this->assertEquals('' . $alternate_text
-                            . '', + .'dot.gif" title="' . $alternate_text . '" alt="' . $alternate_text + . '" class="icon ic_b_comment" />', PMA_getIcon('b_comment.png',$alternate_text, true) ); } @@ -66,9 +66,9 @@ class PMA_getIcon_test extends PHPUnit_Framework_TestCase{ $alternate_text = 'alt_str'; $this->assertEquals('' . $alternate_text
-                            . ' ' . $alternate_text . '', + .'dot.gif" title="' . $alternate_text . '" alt="' . $alternate_text + . '" class="icon ic_b_comment" /> ' . $alternate_text . '', PMA_getIcon('b_comment.png',$alternate_text, true, true) ); } -} \ No newline at end of file +} diff --git a/test/libraries/common/PMA_showDocu_test.php b/test/libraries/common/PMA_showDocu_test.php index b11f12d5dd..edf7c46d50 100644 --- a/test/libraries/common/PMA_showDocu_test.php +++ b/test/libraries/common/PMA_showDocu_test.php @@ -25,7 +25,7 @@ class PMA_showDocu_test extends PHPUnit_Framework_TestCase $GLOBALS['cfg']['ReplaceHelpImg'] = true; $anchor = "relation"; - $expected = '' . __('Documentation') . ''; + $expected = '' . __('Documentation') . ''; $this->assertEquals($expected, PMA_showDocu($anchor)); diff --git a/test/libraries/common/PMA_showPHPDocu_test.php b/test/libraries/common/PMA_showPHPDocu_test.php index eb98f306b7..d47269db8a 100644 --- a/test/libraries/common/PMA_showPHPDocu_test.php +++ b/test/libraries/common/PMA_showPHPDocu_test.php @@ -21,8 +21,8 @@ class PMA_showPHPDocu_test extends PHPUnit_Framework_TestCase $target = "docu"; $lang = _pgettext('PHP documentation language', 'en'); - $expected = '' . __('Documentation') . ''; + $expected = '' . __('Documentation') . ''; $this->assertEquals($expected, PMA_showPHPDocu($target)); } @@ -39,4 +39,4 @@ class PMA_showPHPDocu_test extends PHPUnit_Framework_TestCase } -} \ No newline at end of file +}