Skip to content

Commit 2d79489

Browse files
authored
Update test suite, enable skipped test (#60)
1 parent cb1e65c commit 2d79489

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

spec/ajv

Submodule ajv updated from 88d57fa to 494026e

tests/src/PHPUnit/Spec/Draft7SkipValidationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ protected function skipTest($name)
1515
//return substr($name, 0, strlen($pass)) !== $pass;
1616

1717
static $skip = array(
18-
'iri.json validation of IRIs: a valid IRI based on IPv6 [4]' =>
19-
'invalid case, see https://github.com/json-schema-org/JSON-Schema-Test-Suite/pull/213',
18+
// 'iri.json validation of IRIs: a valid IRI based on IPv6 [4]' =>
19+
// 'invalid case, see https://github.com/json-schema-org/JSON-Schema-Test-Suite/pull/213',
2020
);
2121
return isset($skip[$name]) ? $skip[$name] : false;
2222
}

tests/src/PHPUnit/Spec/Draft7Test.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ protected function skipTest($name)
1515
//return substr($name, 0, strlen($pass)) !== $pass;
1616

1717
static $skip = array(
18-
'iri.json validation of IRIs: a valid IRI based on IPv6 [4]' =>
19-
'invalid case, see https://github.com/json-schema-org/JSON-Schema-Test-Suite/pull/213',
18+
// 'iri.json validation of IRIs: a valid IRI based on IPv6 [4]' =>
19+
// 'invalid case, see https://github.com/json-schema-org/JSON-Schema-Test-Suite/pull/213',
2020
);
2121
return isset($skip[$name]) ? $skip[$name] : false;
2222
}

0 commit comments

Comments
 (0)