Skip to content

Commit c52e96a

Browse files
Re-enable previously failing PHP 7.4 test cases
1 parent 2709bc2 commit c52e96a

File tree

4 files changed

+0
-40
lines changed

4 files changed

+0
-40
lines changed

Tests/Compiler/AutowirePassTest.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -377,11 +377,6 @@ public function testClassNotFoundThrowsException()
377377
$pass->process($container);
378378
}
379379

380-
/**
381-
* @group issue-32995
382-
*
383-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
384-
*/
385380
public function testParentClassNotFoundThrowsException()
386381
{
387382
$this->expectException('Symfony\Component\DependencyInjection\Exception\AutowiringFailedException');
@@ -693,11 +688,6 @@ public function getCreateResourceTests()
693688
];
694689
}
695690

696-
/**
697-
* @group issue-32995
698-
*
699-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
700-
*/
701691
public function testIgnoreServiceWithClassNotExisting()
702692
{
703693
$container = new ContainerBuilder();
@@ -896,11 +886,6 @@ public function testExceptionWhenAliasExists()
896886
$pass->process($container);
897887
}
898888

899-
/**
900-
* @group issue-32995
901-
*
902-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
903-
*/
904889
public function testExceptionWhenAliasDoesNotExist()
905890
{
906891
$this->expectException('Symfony\Component\DependencyInjection\Exception\AutowiringFailedException');

Tests/Compiler/ResolveBindingsPassTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,6 @@ public function testUnusedBinding()
6161
$pass->process($container);
6262
}
6363

64-
/**
65-
* @group issue-32995
66-
*
67-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
68-
*/
6964
public function testMissingParent()
7065
{
7166
$this->expectException('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException');

Tests/Dumper/PhpDumperTest.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -893,11 +893,6 @@ public function testInlineSelfRef()
893893
$this->assertStringEqualsFile(self::$fixturesPath.'/php/services_inline_self_ref.php', $dumper->dump(['class' => 'Symfony_DI_PhpDumper_Test_Inline_Self_Ref']));
894894
}
895895

896-
/**
897-
* @group issue-32995
898-
*
899-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
900-
*/
901896
public function testHotPathOptimizations()
902897
{
903898
$container = include self::$fixturesPath.'/containers/container_inline_requires.php';

Tests/Loader/FileLoaderTest.php

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,6 @@ public function testRegisterClasses()
107107
);
108108
}
109109

110-
/**
111-
* @group issue-32995
112-
*
113-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
114-
*/
115110
public function testRegisterClassesWithExclude()
116111
{
117112
$container = new ContainerBuilder();
@@ -141,11 +136,6 @@ public function testRegisterClassesWithExclude()
141136
);
142137
}
143138

144-
/**
145-
* @group issue-32995
146-
*
147-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
148-
*/
149139
public function testNestedRegisterClasses()
150140
{
151141
$container = new ContainerBuilder();
@@ -174,11 +164,6 @@ public function testNestedRegisterClasses()
174164
$this->assertFalse($alias->isPrivate());
175165
}
176166

177-
/**
178-
* @group issue-32995
179-
*
180-
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
181-
*/
182167
public function testMissingParentClass()
183168
{
184169
$container = new ContainerBuilder();

0 commit comments

Comments
 (0)