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

Unified Diff: tools/grit/grit/format/policy_templates/writers/template_writer_unittest.py

Issue 6134006: Integrate user strings into the JSON policy template file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: " Created 9 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/grit/grit/format/policy_templates/writers/template_writer_unittest.py
diff --git a/tools/grit/grit/format/policy_templates/writers/template_writer_unittest.py b/tools/grit/grit/format/policy_templates/writers/template_writer_unittest.py
index 60ea55a6617b583f5ea5180fc98ace747060a77b..02d24a530e1e3134c517be05168c909464068681 100644
--- a/tools/grit/grit/format/policy_templates/writers/template_writer_unittest.py
+++ b/tools/grit/grit/format/policy_templates/writers/template_writer_unittest.py
@@ -69,12 +69,12 @@ class TemplateWriterUnittests(unittest.TestCase):
'''Unit tests for templater_writer.py.'''
def testSortingGroupsFirst(self):
- tw = template_writer.TemplateWriter(None, None, None)
+ tw = template_writer.TemplateWriter(None, None)
sorted_list = tw.SortPoliciesGroupsFirst(POLICY_DEFS)
self.assertEqual(sorted_list, GROUP_FIRST_SORTED_POLICY_DEFS)
def testSortingIgnoreGroups(self):
- tw = template_writer.TemplateWriter(None, None, None)
+ tw = template_writer.TemplateWriter(None, None)
sorted_list = tw.FlattenGroupsAndSortPolicies(POLICY_DEFS)
self.assertEqual(sorted_list, IGNORE_GROUPS_SORTED_POLICY_DEFS)

Powered by Google App Engine
This is Rietveld 408576698