aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules/flavor/ios_flavor.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipe_modules/flavor/ios_flavor.py')
-rw-r--r--infra/bots/recipe_modules/flavor/ios_flavor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/infra/bots/recipe_modules/flavor/ios_flavor.py b/infra/bots/recipe_modules/flavor/ios_flavor.py
index 70e497b793..45b33448a1 100644
--- a/infra/bots/recipe_modules/flavor/ios_flavor.py
+++ b/infra/bots/recipe_modules/flavor/ios_flavor.py
@@ -58,14 +58,14 @@ class iOSFlavorUtils(gn_flavor.GNFlavorUtils):
def copy_directory_contents_to_host(self, device, host):
self._run_ios_script('pull_if_needed', device, host)
- def remove_file_on_device(self, path): # pragma: nocover
+ def remove_file_on_device(self, path):
self._run_ios_script('rm', path)
def create_clean_device_dir(self, path):
self._run_ios_script('rm', path)
self._run_ios_script('mkdir', path)
- def read_file_on_device(self, path): # pragma: nocover
+ def read_file_on_device(self, path):
full = self.m.vars.skia_dir.join('platform_tools/ios/bin/ios_cat_file')
rc = self.m.run(self.m.step,
name = 'cat_file %s' % path,