| 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 dd4d42e1a3fadec3d18102abf6b9a1916d283cc7..15ec23831dea637d384ae28fa3a192b1b934ccde 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):
|
|
|