Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: tools/json_schema_compiler/json_schema_test.py

Issue 12041098: Initial commit of the Dart Chrome Extension APIs generators (Closed) Base URL: http://git.chromium.org/chromium/src.git@file_path_bugfix
Patch Set: Fixed to work with json_schema_compiler changes, fixed style & structure issues, and implemented a … Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/json_schema_compiler/json_schema_test.py
diff --git a/tools/json_schema_compiler/json_schema_test.py b/tools/json_schema_compiler/json_schema_test.py
index 860c5879b9d03f9cdfaba853f657d17a56b14bab..ffba6539e00b9f5e0700d1a7d1e9b44b580ffaa2 100755
--- a/tools/json_schema_compiler/json_schema_test.py
+++ b/tools/json_schema_compiler/json_schema_test.py
@@ -73,7 +73,7 @@ class JsonSchemaUnittest(unittest.TestCase):
]
schema = json_schema.CachedLoad('test/json_schema_test.json')
- self.assertEquals(compiled, json_schema.DeleteNocompileNodes(schema))
+ self.assertEquals(compiled, json_schema.DeleteNodes(schema, 'nocompile'))
if __name__ == '__main__':
unittest.main()

Powered by Google App Engine
This is Rietveld 408576698