summaryrefslogtreecommitdiff
path: root/json/tests/draft6/patternProperties.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft6/patternProperties.json')
-rw-r--r--json/tests/draft6/patternProperties.json37
1 files changed, 0 insertions, 37 deletions
diff --git a/json/tests/draft6/patternProperties.json b/json/tests/draft6/patternProperties.json
index 290cfc4..1d04a16 100644
--- a/json/tests/draft6/patternProperties.json
+++ b/json/tests/draft6/patternProperties.json
@@ -147,42 +147,5 @@
"valid": true
}
]
- },
- {
- "description": "non-BMP, checks for proper surrogate pair handling for UTF-16",
- "schema": {
- "patternProperties": {
- "^🐲*$": {
- "type": "integer"
- }
- }
- },
- "tests": [
- {
- "description": "matches empty",
- "data": { "": 1 },
- "valid": true
- },
- {
- "description": "matches single",
- "data": { "🐲": 1 },
- "valid": true
- },
- {
- "description": "matches two",
- "data": { "🐲🐲": 1 },
- "valid": true
- },
- {
- "description": "doesn't match one",
- "data": { "🐲": "hello" },
- "valid": false
- },
- {
- "description": "doesn't match two",
- "data": { "🐲🐲": "hello" },
- "valid": false
- }
- ]
}
]