Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2017-03-20 18:37:04 +0300
committerMichal Čihař <michal@cihar.com>2017-03-20 18:37:04 +0300
commitebb97a39601eea23e87d6cb67a83c0ec40bdc818 (patch)
treeba27ecfea2304fe52125bbabd7279598befa85e3
parent3d8b97b2556311ca7a0a9b8cbbbba94aa2276b6e (diff)
Remove no longer working test
We no longer directly process value from cookie here, so the test can no longer work. Signed-off-by: Michal Čihař <michal@cihar.com>
-rw-r--r--test/classes/PMA_Theme_test.php6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/classes/PMA_Theme_test.php b/test/classes/PMA_Theme_test.php
index 8c3b91ee32..270b800adc 100644
--- a/test/classes/PMA_Theme_test.php
+++ b/test/classes/PMA_Theme_test.php
@@ -274,12 +274,6 @@ class PMA_ThemeTest extends PHPUnit_Framework_TestCase
'82%'
);
- $_COOKIE['pma_fontsize'] = '14px';
- $this->assertEquals(
- $this->object->getFontSize(),
- '14px'
- );
-
$GLOBALS['PMA_Config']->set('fontsize', '12px');
$this->assertEquals(
$this->object->getFontSize(),