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

Unified Diff: grit/format/policy_templates/writers/reg_writer_unittest.py

Issue 227073006: Added a policy writer for iOS Plists. (Closed) Base URL: https://chromium.googlesource.com/external/grit-i18n.git@master
Patch Set: rebase Created 6 years, 8 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: grit/format/policy_templates/writers/reg_writer_unittest.py
===================================================================
--- grit/format/policy_templates/writers/reg_writer_unittest.py (revision 158)
+++ grit/format/policy_templates/writers/reg_writer_unittest.py (working copy)
@@ -216,13 +216,13 @@
# Tests a policy group with a single policy of type 'dict'.
example = {
'bool': True,
- 'int': 10,
- 'string': 'abc',
- 'list': [1, 2, 3],
'dict': {
'a': 1,
'b': 2,
- }
+ },
+ 'int': 10,
+ 'list': [1, 2, 3],
+ 'string': 'abc',
}
grd = self.PrepareTest(
'{'
@@ -244,8 +244,8 @@
'Windows Registry Editor Version 5.00',
'',
'[HKEY_LOCAL_MACHINE\\Software\\Policies\\Chromium]',
- '"DictionaryPolicy"="{\'bool\': True, \'dict\': {\'a\': 1, '
- '\'b\': 2}, \'int\': 10, \'list\': [1, 2, 3], \'string\': \'abc\'}"'])
+ '"DictionaryPolicy"="{"bool": true, "dict": {"a": 1, '
+ '"b": 2}, "int": 10, "list": [1, 2, 3], "string": "abc"}"'])
self.CompareOutputs(output, expected_output)
def testNonSupportedPolicy(self):
« no previous file with comments | « grit/format/policy_templates/writers/reg_writer.py ('k') | grit/format/policy_templates/writers/xml_formatted_writer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698