8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad8d872 commit 4b9d74dCopy full SHA for 4b9d74d
src/Symfony/Bundle/FrameworkBundle/Tests/Console/Descriptor/JsonDescriptorTest.php
@@ -17,7 +17,9 @@ class JsonDescriptorTest extends AbstractDescriptorTest
17
{
18
protected function setUp()
19
20
- $this->markTestSkipped('Test skipped on PHP 5.3 as JSON_PRETTY_PRINT does not exist.');
+ if (version_compare(phpversion(), '5.4.0', '<')) {
21
+ $this->markTestSkipped('Test skipped on PHP 5.3 as JSON_PRETTY_PRINT does not exist.');
22
+ }
23
}
24
25
protected function getDescriptor()
0 commit comments