Explorar el Código

fix test for json-schema 5.2

Remi Collet hace 7 años
padre
commit
95d82f6fde
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      tests/Composer/Test/Json/ComposerSchemaTest.php

+ 2 - 1
tests/Composer/Test/Json/ComposerSchemaTest.php

@@ -101,9 +101,10 @@ class ComposerSchemaTest extends \PHPUnit_Framework_TestCase
         if (!$validator->isValid()) {
             $errors = $validator->getErrors();
 
-            // remove justinrainbow/json-schema 3.0 props so it works with all versions
+            // remove justinrainbow/json-schema 3.0/5.2 props so it works with all versions
             foreach ($errors as &$err) {
                 unset($err['pointer']);
+                unset($err['context']);
             }
 
             return $errors;