Skip to content
This repository was archived by the owner on Dec 26, 2023. It is now read-only.

Commit 2e8a7f6

Browse files
author
Petr Knap
committed
Hot-fix: Removed array short syntax from test
1 parent 96d5fe0 commit 2e8a7f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Enum/EnumTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function testCallStaticsWorks($name, $expectedValue)
2020
$this->setExpectedException(get_class($expectedValue));
2121
}
2222

23-
$this->assertSame($expectedValue, MyBoolean::__callStatic($name, [])->getValue());
23+
$this->assertSame($expectedValue, MyBoolean::__callStatic($name, array())->getValue());
2424
}
2525

2626
public function dataCallStaticsWorks()

0 commit comments

Comments
 (0)