summaryrefslogtreecommitdiffstats
path: root/tests/lib/AppFramework/Http/HttpTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/AppFramework/Http/HttpTest.php')
-rw-r--r--tests/lib/AppFramework/Http/HttpTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/lib/AppFramework/Http/HttpTest.php b/tests/lib/AppFramework/Http/HttpTest.php
index 79c03ce1ab0..14097a2a581 100644
--- a/tests/lib/AppFramework/Http/HttpTest.php
+++ b/tests/lib/AppFramework/Http/HttpTest.php
@@ -37,7 +37,7 @@ class HttpTest extends \Test\TestCase {
protected function setUp(): void {
parent::setUp();
- $this->server = array();
+ $this->server = [];
$this->http = new Http($this->server);
}
@@ -56,7 +56,7 @@ class HttpTest extends \Test\TestCase {
public function testEtagMatchReturnsNotModified() {
- $http = new Http(array('HTTP_IF_NONE_MATCH' => 'hi'));
+ $http = new Http(['HTTP_IF_NONE_MATCH' => 'hi']);
$header = $http->getStatusHeader(Http::STATUS_OK, null, 'hi');
$this->assertEquals('HTTP/1.1 304 Not Modified', $header);
@@ -64,7 +64,7 @@ class HttpTest extends \Test\TestCase {
public function testQuotedEtagMatchReturnsNotModified() {
- $http = new Http(array('HTTP_IF_NONE_MATCH' => '"hi"'));
+ $http = new Http(['HTTP_IF_NONE_MATCH' => '"hi"']);
$header = $http->getStatusHeader(Http::STATUS_OK, null, 'hi');
$this->assertEquals('HTTP/1.1 304 Not Modified', $header);
@@ -76,8 +76,8 @@ class HttpTest extends \Test\TestCase {
$dateTime->setTimestamp('12');
$http = new Http(
- array(
- 'HTTP_IF_MODIFIED_SINCE' => 'Thu, 01 Jan 1970 00:00:12 +0000')
+ [
+ 'HTTP_IF_MODIFIED_SINCE' => 'Thu, 01 Jan 1970 00:00:12 +0000']
);
$header = $http->getStatusHeader(Http::STATUS_OK, $dateTime);
@@ -87,7 +87,7 @@ class HttpTest extends \Test\TestCase {
public function testTempRedirectBecomesFoundInHttp10() {
- $http = new Http(array(), 'HTTP/1.0');
+ $http = new Http([], 'HTTP/1.0');
$header = $http->getStatusHeader(Http::STATUS_TEMPORARY_REDIRECT);
$this->assertEquals('HTTP/1.0 302 Found', $header);