summaryrefslogtreecommitdiff
path: root/json/tests/draft4/optional/ecmascript-regex.json
diff options
context:
space:
mode:
Diffstat (limited to 'json/tests/draft4/optional/ecmascript-regex.json')
-rw-r--r--json/tests/draft4/optional/ecmascript-regex.json8
1 files changed, 4 insertions, 4 deletions
diff --git a/json/tests/draft4/optional/ecmascript-regex.json b/json/tests/draft4/optional/ecmascript-regex.json
index d82e0fe..106c33b 100644
--- a/json/tests/draft4/optional/ecmascript-regex.json
+++ b/json/tests/draft4/optional/ecmascript-regex.json
@@ -30,20 +30,20 @@
]
},
{
- "description": "ECMA 262 regex converts \\a to ascii BEL",
+ "description": "ECMA 262 regex converts \\t to horizontal tab",
"schema": {
"type": "string",
- "pattern": "^\\a$"
+ "pattern": "^\\t$"
},
"tests": [
{
"description": "does not match",
- "data": "\\a",
+ "data": "\\t",
"valid": false
},
{
"description": "matches",
- "data": "\u0007",
+ "data": "\u0009",
"valid": true
}
]