summaryrefslogtreecommitdiffstats
path: root/tools/json_schema_compiler/test
diff options
context:
space:
mode:
Diffstat (limited to 'tools/json_schema_compiler/test')
-rw-r--r--tools/json_schema_compiler/test/crossref.json8
-rw-r--r--tools/json_schema_compiler/test/dependencyTester.json4
-rw-r--r--tools/json_schema_compiler/test/windows.json2
3 files changed, 7 insertions, 7 deletions
diff --git a/tools/json_schema_compiler/test/crossref.json b/tools/json_schema_compiler/test/crossref.json
index 9d3f905..02e5c94 100644
--- a/tools/json_schema_compiler/test/crossref.json
+++ b/tools/json_schema_compiler/test/crossref.json
@@ -8,7 +8,7 @@
"type": "object",
"properties": {
"testType": {
- "$ref": "simple_api.TestType",
+ "$ref": "TestType",
"optional": true
}
}
@@ -22,7 +22,7 @@
"parameters": [
{
"name": "testType",
- "$ref": "simple_api.TestType",
+ "$ref": "TestType",
"optional": true
},
{
@@ -43,7 +43,7 @@
"parameters": [
{
"name": "result",
- "$ref": "simple_api.TestType",
+ "$ref": "TestType",
"description": "A TestType."
}
]
@@ -59,7 +59,7 @@
"name": "paramObject",
"type": "object",
"properties": {
- "testType": {"$ref": "simple_api.TestType", "optional": true},
+ "testType": {"$ref": "TestType", "optional": true},
"boolean": {"type": "boolean"}
}
},
diff --git a/tools/json_schema_compiler/test/dependencyTester.json b/tools/json_schema_compiler/test/dependencyTester.json
index aec4c15..43b145a 100644
--- a/tools/json_schema_compiler/test/dependencyTester.json
+++ b/tools/json_schema_compiler/test/dependencyTester.json
@@ -18,10 +18,10 @@
"type": "object",
"properties": {
"color": {
- "$ref": "browserAction.ColorArray"
+ "$ref": "ColorArray"
},
"scriptCode": {
- "$ref": "fontSettings.ScriptCode"
+ "$ref": "ScriptCode"
}
}
}
diff --git a/tools/json_schema_compiler/test/windows.json b/tools/json_schema_compiler/test/windows.json
index f6062d4..52fc683d 100644
--- a/tools/json_schema_compiler/test/windows.json
+++ b/tools/json_schema_compiler/test/windows.json
@@ -12,7 +12,7 @@
"left": {"type": "integer", "description": "The offset of the window from the left edge of the screen in pixels."},
"width": {"type": "integer", "description": "The width of the window in pixels."},
"height": {"type": "integer", "description": "The height of the window in pixels."},
- "tabs": {"type": "array", "items": { "$ref": "tabs.Tab" }, "optional": true, "description": "Array of $ref:Tab objects representing the current tabs in the window."},
+ "tabs": {"type": "array", "items": { "$ref": "Tab" }, "optional": true, "description": "Array of $ref:Tab objects representing the current tabs in the window."},
"incognito": {"type": "boolean", "description": "Whether the window is incognito."},
"type": {
"type": "string",