| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from copy import deepcopy | 5 from copy import deepcopy |
| 6 from slave import recipe_test_api | 6 from recipe_engine import recipe_test_api |
| 7 | 7 |
| 8 class iOSTestApi(recipe_test_api.RecipeTestApi): | 8 class iOSTestApi(recipe_test_api.RecipeTestApi): |
| 9 @recipe_test_api.mod_test_data | 9 @recipe_test_api.mod_test_data |
| 10 @staticmethod | 10 @staticmethod |
| 11 def build_config(config): | 11 def build_config(config): |
| 12 return deepcopy(config) | 12 return deepcopy(config) |
| 13 | 13 |
| 14 def make_test_build_config(self, config): | 14 def make_test_build_config(self, config): |
| 15 return self.build_config(config) | 15 return self.build_config(config) |
| 16 | 16 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 39 'links': { | 39 'links': { |
| 40 'fake URL text': 'fake URL', | 40 'fake URL text': 'fake URL', |
| 41 }, | 41 }, |
| 42 'logs': { | 42 'logs': { |
| 43 'fake log': [ | 43 'fake log': [ |
| 44 'fake log line 1', | 44 'fake log line 1', |
| 45 'fake log line 2', | 45 'fake log line 2', |
| 46 ], | 46 ], |
| 47 } | 47 } |
| 48 }) | 48 }) |
| OLD | NEW |