We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0e4c4a commit 6e0b2dcCopy full SHA for 6e0b2dc
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