Chromium Code Reviews| Index: tests/bot_update_test.py |
| diff --git a/tests/bot_update_test.py b/tests/bot_update_test.py |
| index a8616cd91ef1a53b222379946bd19a2b6681547b..c303f940e84d37f7ee7f42694d762226246c98c9 100755 |
| --- a/tests/bot_update_test.py |
| +++ b/tests/bot_update_test.py |
| @@ -495,7 +495,6 @@ class BotUpdateTest(unittest.TestCase): |
| } |
| gclient_spec = 'solutions=[%r]' % solution |
| self.bu_args.extend([ |
| - '--post-flag-day', |
| '--specs', gclient_spec, |
| '--revision', self.template_dict['top_revision_0']]) |
| result = self.run_bot_update() |
| @@ -513,7 +512,7 @@ class BotUpdateTest(unittest.TestCase): |
| self.assertItemsEqual(expected_files, self.get_files(topdir)) |
| expected_json = { |
| 'root': 'top', |
| - 'properties': {}, |
| + 'properties': {'got_revision': self.template_dict['top_revision_0']}, |
|
Michael Achenbach
2014/10/10 07:31:39
Can't say much about this...
|
| 'did_run': True, |
| 'patch_root': None |
| } |
| @@ -552,7 +551,7 @@ class BotUpdateTest(unittest.TestCase): |
| self.assertItemsEqual(expected_files, self.get_files(topdir)) |
| expected_json = { |
| 'root': 'top', |
| - 'properties': {}, |
| + 'properties': {'got_revision': self.template_dict['top_revision_1']}, |
| 'did_run': True, |
| 'patch_root': None |
| } |
| @@ -615,7 +614,7 @@ class BotUpdateTest(unittest.TestCase): |
| self.assertItemsEqual(expected_files, self.get_files(topdir)) |
| expected_json = { |
| 'root': 'top', |
| - 'properties': {}, |
| + 'properties': {'got_revision': self.template_dict['top_revision_1']}, |
| 'did_run': True, |
| 'patch_root': 'top' |
| } |