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:
authorKamil Tekiela <tekiela246@gmail.com>2022-10-30 01:41:53 +0300
committerKamil Tekiela <tekiela246@gmail.com>2022-10-30 01:58:04 +0300
commitce628397ab8e9b041fbc57b95e70583905be891f (patch)
treea949e627f45714919ba684d6cfc85f75b813b670 /test
parent2334d6bcca0a77414108d1203a6247fa4d5d9060 (diff)
Update Core.php
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/classes/CoreTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/classes/CoreTest.php b/test/classes/CoreTest.php
index e7cb514874..6d0e94c931 100644
--- a/test/classes/CoreTest.php
+++ b/test/classes/CoreTest.php
@@ -1046,7 +1046,7 @@ class CoreTest extends AbstractNetworkTestCase
$this->assertContains('Content-Description: File Transfer', $headersList);
$this->assertContains('Content-Disposition: attachment; filename="test.sql.gz"', $headersList);
$this->assertContains('Content-Type: application/x-gzip', $headersList);
- $this->assertContains('Content-Encoding: gzip', $headersList);
+ $this->assertNotContains('Content-Encoding: gzip', $headersList);
$this->assertContains('Content-Transfer-Encoding: binary', $headersList);
$this->assertNotContains('Content-Length: 0', $headersList);
}