| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import copy | 6 import copy |
| 7 import datetime | 7 import datetime |
| 8 import hashlib | 8 import hashlib |
| 9 import os | 9 import os |
| 10 import posixpath | 10 import posixpath |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 '23.0.1271.89': '167132', | 632 '23.0.1271.89': '167132', |
| 633 '24.0.1305.4': '164971', | 633 '24.0.1305.4': '164971', |
| 634 } | 634 } |
| 635 for version, revision in revision_dict.iteritems(): | 635 for version, revision in revision_dict.iteritems(): |
| 636 self.assertEqual('trunk.%s' % revision, | 636 self.assertEqual('trunk.%s' % revision, |
| 637 self.delegate.GetTrunkRevision(version)) | 637 self.delegate.GetTrunkRevision(version)) |
| 638 | 638 |
| 639 | 639 |
| 640 if __name__ == '__main__': | 640 if __name__ == '__main__': |
| 641 sys.exit(unittest.main()) | 641 sys.exit(unittest.main()) |
| OLD | NEW |