diff --git a/tests/Composer/Test/Json/JsonFileTest.php b/tests/Composer/Test/Json/JsonFileTest.php index 279ccd939..867c69307 100644 --- a/tests/Composer/Test/Json/JsonFileTest.php +++ b/tests/Composer/Test/Json/JsonFileTest.php @@ -54,6 +54,9 @@ class JsonFileTest extends \PHPUnit_Framework_TestCase public function testParseErrorDetectSingleQuotes() { + if (defined('JSON_PARSER_NOTSTRICT')) { + $this->markTestSkipped('jsonc issue, see https://github.com/remicollet/pecl-json-c/issues/23'); + } $json = '{ \'foo\': "bar" }';