Skip to content

Commit

Permalink
Re-enable previously failing PHP 7.4 test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Sep 19, 2019
1 parent 2709bc2 commit c52e96a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 40 deletions.
15 changes: 0 additions & 15 deletions Tests/Compiler/AutowirePassTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -377,11 +377,6 @@ public function testClassNotFoundThrowsException()
$pass->process($container);
}

/**
* @group issue-32995
*
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
*/
public function testParentClassNotFoundThrowsException()
{
$this->expectException('Symfony\Component\DependencyInjection\Exception\AutowiringFailedException');
Expand Down Expand Up @@ -693,11 +688,6 @@ public function getCreateResourceTests()
];
}

/**
* @group issue-32995
*
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
*/
public function testIgnoreServiceWithClassNotExisting()
{
$container = new ContainerBuilder();
Expand Down Expand Up @@ -896,11 +886,6 @@ public function testExceptionWhenAliasExists()
$pass->process($container);
}

/**
* @group issue-32995
*
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
*/
public function testExceptionWhenAliasDoesNotExist()
{
$this->expectException('Symfony\Component\DependencyInjection\Exception\AutowiringFailedException');
Expand Down
5 changes: 0 additions & 5 deletions Tests/Compiler/ResolveBindingsPassTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@ public function testUnusedBinding()
$pass->process($container);
}

/**
* @group issue-32995
*
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
*/
public function testMissingParent()
{
$this->expectException('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException');
Expand Down
5 changes: 0 additions & 5 deletions Tests/Dumper/PhpDumperTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -893,11 +893,6 @@ public function testInlineSelfRef()
$this->assertStringEqualsFile(self::$fixturesPath.'/php/services_inline_self_ref.php', $dumper->dump(['class' => 'Symfony_DI_PhpDumper_Test_Inline_Self_Ref']));
}

/**
* @group issue-32995
*
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
*/
public function testHotPathOptimizations()
{
$container = include self::$fixturesPath.'/containers/container_inline_requires.php';
Expand Down
15 changes: 0 additions & 15 deletions Tests/Loader/FileLoaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,6 @@ public function testRegisterClasses()
);
}

/**
* @group issue-32995
*
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
*/
public function testRegisterClassesWithExclude()
{
$container = new ContainerBuilder();
Expand Down Expand Up @@ -141,11 +136,6 @@ public function testRegisterClassesWithExclude()
);
}

/**
* @group issue-32995
*
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
*/
public function testNestedRegisterClasses()
{
$container = new ContainerBuilder();
Expand Down Expand Up @@ -174,11 +164,6 @@ public function testNestedRegisterClasses()
$this->assertFalse($alias->isPrivate());
}

/**
* @group issue-32995
*
* @runInSeparateProcess https://github.com/symfony/symfony/issues/32995
*/
public function testMissingParentClass()
{
$container = new ContainerBuilder();
Expand Down

0 comments on commit c52e96a

Please sign in to comment.