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
path: root/test
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2012-05-14 17:18:36 +0400
committerMichal Čihař <mcihar@suse.cz>2012-05-14 17:18:36 +0400
commit92e763a574b0e67da2bbc71239985ee209a30673 (patch)
tree6683fbe8bea7b63d0d66e9ad72474ae92c0f933a /test
parent82562d8e7dd786a01a4af3cff0c9731deec0563b (diff)
Remove disabled code
Diffstat (limited to 'test')
-rw-r--r--test/classes/PMA_Config_test.php9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/classes/PMA_Config_test.php b/test/classes/PMA_Config_test.php
index 4118441603..32e45bc597 100644
--- a/test/classes/PMA_Config_test.php
+++ b/test/classes/PMA_Config_test.php
@@ -67,15 +67,6 @@ class PMA_ConfigTest extends PHPUnit_Framework_TestCase
$this->object->set('PMA_USR_BROWSER_VER', 5);
$this->object->checkOutputCompression();
$this->assertEquals('auto', $this->object->get("OBGzip"));
-
-/*
- Disabled as ini_set is quite often not allowed
- @ini_set('zlib.output_compression', 'Off');
- $this->object->checkOutputCompression();
- $this->assertFalse($this->object->get("OBGzip"));
-
- @ini_set('zlib.output_compression', 'On');
- */
}
/**