Skip to content

Commit 108fbf0

Browse files
committed
Stop using the short array syntax
1 parent 31ca035 commit 108fbf0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Mf2/RelTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public function testRelURLsRelsUniqueAndSorted() {
185185
<a href="#" rel="bookmark archived"></a>';
186186
$parser = new Parser($input);
187187
$output = $parser->parse();
188-
$this->assertEquals($output['rel-urls']['#']['rels'], ['archived', 'bookmark', 'me']);
188+
$this->assertEquals($output['rel-urls']['#']['rels'], array('archived', 'bookmark', 'me'));
189189
}
190190

191191
public function testRelURLsInfoMergesCorrectly() {
@@ -206,7 +206,7 @@ public function testRelURLsNoDuplicates() {
206206
<a href="#a" rel="a"></a>';
207207
$parser = new Parser($input);
208208
$output = $parser->parse();
209-
$this->assertEquals($output['rels']['a'], ['#a', '#b']);
209+
$this->assertEquals($output['rels']['a'], array('#a', '#b'));
210210
}
211211

212212
}

0 commit comments

Comments
 (0)