Skip to content

Commit

Permalink
[Debug] Skip unsilencing test on PHP7
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Apr 6, 2015
1 parent 8054629 commit 6a87ad3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Symfony/Component/Debug/Tests/DebugClassLoaderTest.php
Expand Up @@ -61,6 +61,10 @@ public function testIdempotence()

public function testUnsilencing()
{
if (PHP_VERSION_ID >= 70000) {
$this->markTestSkipped('PHP7 throws exceptions, unsilencing is not required anymore.');
}

ob_start();

$this->iniSet('log_errors', 0);
Expand Down

0 comments on commit 6a87ad3

Please sign in to comment.