Index: grit/format/policy_templates/writers/reg_writer_unittest.py |
diff --git a/grit/format/policy_templates/writers/reg_writer_unittest.py b/grit/format/policy_templates/writers/reg_writer_unittest.py |
index d84599c8230571a1cbc370251f94ebaba8a59b96..d559c9f6fd941c71b3cdbf51ec665d637c4f95ae 100644 |
--- a/grit/format/policy_templates/writers/reg_writer_unittest.py |
+++ b/grit/format/policy_templates/writers/reg_writer_unittest.py |
@@ -216,13 +216,13 @@ class RegWriterUnittest(writer_unittest_common.WriterUnittestCommon): |
# 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 @@ class RegWriterUnittest(writer_unittest_common.WriterUnittestCommon): |
'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): |