Convert some old array() calls to new [] syntax

This commit is contained in:
Christian Bläul
2024-08-29 17:06:16 +02:00
parent 259e9a6c31
commit 24e229ddfa
3 changed files with 8 additions and 11 deletions

View File

@@ -51,7 +51,7 @@ class SaveTest extends TestCase {
public function testSaveWithNewHeader() {
$this->csv->linefeed = "\n";
$this->csv->titles = array("NewTitle");
$this->csv->titles = ["NewTitle"];
$expected = "NewTitle\n0444\n5555\n";
$this->saveAndCompare($expected);
}