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:
authorWilliam Desportes <williamdes@wdes.fr>2021-04-30 00:51:55 +0300
committerWilliam Desportes <williamdes@wdes.fr>2021-04-30 00:51:55 +0300
commit23366b4684828770951f6087d5793fc470a73f68 (patch)
treec3b37d60005df5d71b6da14363271874deeabdb9 /test/classes
parentbd7a7efdc7ec872afa28a020adb07b933810fa49 (diff)
Fix PHP 7.1 syntax errors
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to 'test/classes')
-rw-r--r--test/classes/Controllers/NormalizationControllerTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/classes/Controllers/NormalizationControllerTest.php b/test/classes/Controllers/NormalizationControllerTest.php
index 65dd4a90a8..b3c019ba0b 100644
--- a/test/classes/Controllers/NormalizationControllerTest.php
+++ b/test/classes/Controllers/NormalizationControllerTest.php
@@ -91,7 +91,7 @@ class NormalizationControllerTest extends AbstractTestCase
],
],
'success' => true,
- ],
+ ]
);
$this->expectOutputString($data);
}
@@ -147,7 +147,7 @@ class NormalizationControllerTest extends AbstractTestCase
'headText' => '<h3>The second step of normalization is complete for table \'test_tbl\'.</h3>',
'queryError' => false,
'extra' => '',
- ],
+ ]
);
}
@@ -182,7 +182,7 @@ class NormalizationControllerTest extends AbstractTestCase
'headText' => '<h3>The third step of normalization is complete.</h3>',
'queryError' => false,
'extra' => '',
- ],
+ ]
);
}
}