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) |