From 11932a471b4ef10faf76b6fcfe30a35f946eb7ab Mon Sep 17 00:00:00 2001
From: Laria Carolin Chabowski <laria@laria.me>
Date: Sun, 13 Sep 2020 21:44:30 +0200
Subject: Use short array syntax

We can use it now that we switched to PHP 7.3
---
 tests/functional/test_short_for_additional_attribs/Test.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

(limited to 'tests/functional/test_short_for_additional_attribs/Test.php')

diff --git a/tests/functional/test_short_for_additional_attribs/Test.php b/tests/functional/test_short_for_additional_attribs/Test.php
index 8099869..e0e0934 100644
--- a/tests/functional/test_short_for_additional_attribs/Test.php
+++ b/tests/functional/test_short_for_additional_attribs/Test.php
@@ -14,10 +14,10 @@ class Test extends BaseTest
 
     protected function setUpSte(STECore $ste): void
     {
-        $ste->set_var_by_name("data", array(
-            array('content' => 'foo', 'foo' => true),
-            array('content' => 'bar', 'foo' => false),
-            array('content' => 'baz', 'foo' => false),
-        ));
+        $ste->set_var_by_name("data", [
+            ['content' => 'foo', 'foo' => true],
+            ['content' => 'bar', 'foo' => false],
+            ['content' => 'baz', 'foo' => false],
+        ]);
     }
 }
-- 
cgit v1.2.3-70-g09d2