| Index: tools/grit/grit/format/policy_templates/writers/adml_writer_unittest.py
|
| diff --git a/tools/grit/grit/format/policy_templates/writers/adml_writer_unittest.py b/tools/grit/grit/format/policy_templates/writers/adml_writer_unittest.py
|
| index 0ac74a620529438239c1a93726b3069b2b5e05ee..9231f682851acb4f2dd30d31082e4e76f6e73f00 100644
|
| --- a/tools/grit/grit/format/policy_templates/writers/adml_writer_unittest.py
|
| +++ b/tools/grit/grit/format/policy_templates/writers/adml_writer_unittest.py
|
| @@ -25,13 +25,14 @@ class AdmlWriterTest(xml_writer_base_unittest.XmlWriterBaseTest):
|
| config = {
|
| 'build': 'test',
|
| 'win_supported_os': 'SUPPORTED_TESTOS',
|
| - 'win_supported_os_msg': 'IDS_POLICY_WIN_SUPPORTED_WINXPSP2',
|
| }
|
| - # Grid messages
|
| - messages = {
|
| - 'IDS_POLICY_WIN_SUPPORTED_WINXPSP2': 'Supported on Test OS or higher'
|
| + self.writer = adml_writer.GetWriter(config)
|
| + self.writer.messages = {
|
| + 'win_supported_winxpsp2': {
|
| + 'text': 'Supported on Test OS or higher',
|
| + 'desc': 'blah'
|
| + }
|
| }
|
| - self.writer = adml_writer.GetWriter(config, messages)
|
| self.writer.Init()
|
|
|
| def _InitWriterForAddingPolicyGroups(self, writer):
|
|
|