summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2013-10-27 15:28:46 -0400
committerJulian Berman <Julian@GrayVines.com>2013-10-27 15:28:46 -0400
commit11dd8a53a856aba6df76ec8fd2c5cee2e5007236 (patch)
tree6e75988c25656da5d468103cae9a9d73ab444a8b
parent555386f045be0dff62d9e70a277ecf48bc59bd2a (diff)
parent5f8aae8efc5a92c4b5f8c631f51c8b04a7141ea3 (diff)
downloadjsonschema-11dd8a53a856aba6df76ec8fd2c5cee2e5007236.tar.gz
Merge commit '5f8aae8efc5a92c4b5f8c631f51c8b04a7141ea3'
* commit '5f8aae8efc5a92c4b5f8c631f51c8b04a7141ea3': Squashed 'json/' changes from b6f129e..468fa78
-rw-r--r--json/tests/draft3/optional/format.json5
-rw-r--r--json/tests/draft4/optional/format.json5
2 files changed, 10 insertions, 0 deletions
diff --git a/json/tests/draft3/optional/format.json b/json/tests/draft3/optional/format.json
index 1ff461a..fc86b03 100644
--- a/json/tests/draft3/optional/format.json
+++ b/json/tests/draft3/optional/format.json
@@ -81,6 +81,11 @@
"description": "an invalid URI",
"data": "\\\\WINDOWS\\fileshare",
"valid": false
+ },
+ {
+ "description": "an invalid URI though valid URI reference",
+ "data": "abc",
+ "valid": false
}
]
},
diff --git a/json/tests/draft4/optional/format.json b/json/tests/draft4/optional/format.json
index cba8fc3..d94a309 100644
--- a/json/tests/draft4/optional/format.json
+++ b/json/tests/draft4/optional/format.json
@@ -33,6 +33,11 @@
"description": "an invalid URI",
"data": "\\\\WINDOWS\\fileshare",
"valid": false
+ },
+ {
+ "description": "an invalid URI though valid URI reference",
+ "data": "abc",
+ "valid": false
}
]
},