Skip to content

Commit 2c4e186

Browse files
fix merge
1 parent 3deeb0c commit 2c4e186

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Symfony/Component/PropertyInfo/Tests/DependencyInjection/PropertyInfoPassTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ class PropertyInfoPassTest extends TestCase
2020
public function testServicesAreOrderedAccordingToPriority()
2121
{
2222
$services = array(
23-
'n3' => array('tag' => array()),
24-
'n1' => array('tag' => array('priority' => 200)),
25-
'n2' => array('tag' => array('priority' => 100)),
23+
'n3' => array(array()),
24+
'n1' => array(array('priority' => 200)),
25+
'n2' => array(array('priority' => 100)),
2626
);
2727

2828
$expected = array(

src/Symfony/Component/Serializer/Tests/DependencyInjection/SerializerPassTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ public function testThrowExceptionWhenNoEncoders()
7272
public function testServicesAreOrderedAccordingToPriority()
7373
{
7474
$services = array(
75-
'n3' => array('tag' => array()),
76-
'n1' => array('tag' => array('priority' => 200)),
77-
'n2' => array('tag' => array('priority' => 100)),
75+
'n3' => array(array()),
76+
'n1' => array(array('priority' => 200)),
77+
'n2' => array(array('priority' => 100)),
7878
);
7979

8080
$expected = array(

0 commit comments

Comments
 (0)