| Index: scripts/slave/recipe_modules/ios/api.py
|
| diff --git a/scripts/slave/recipe_modules/ios/api.py b/scripts/slave/recipe_modules/ios/api.py
|
| index e0cf6cd3bed8a98a7364b1afbff353449f791f02..469a39407260380880d5b75134875217eb312475 100644
|
| --- a/scripts/slave/recipe_modules/ios/api.py
|
| +++ b/scripts/slave/recipe_modules/ios/api.py
|
| @@ -41,7 +41,7 @@ class iOSApi(recipe_api.RecipeApi):
|
| kwargs.setdefault('force', True)
|
| self.m.gclient.set_config('ios')
|
|
|
| - checkout_dir = self.m.chromium_tests.get_checkout_dir({})
|
| + checkout_dir = self.m.chromium_checkout.get_checkout_dir({})
|
| if checkout_dir:
|
| kwargs.setdefault('cwd', checkout_dir)
|
|
|
| @@ -341,7 +341,7 @@ class iOSApi(recipe_api.RecipeApi):
|
| self.compiler == 'ninja' and
|
| self.m.tryserver.is_tryserver and
|
| 'without patch' not in suffix):
|
| - affected_files = self.m.chromium_tests.get_files_affected_by_patch(
|
| + affected_files = self.m.chromium_checkout.get_files_affected_by_patch(
|
| cwd=self.m.path['checkout'])
|
| # The same test may be configured to run on multiple simulators.
|
| # Only specify each test once for the analyzer.
|
|
|