Index: recipe_modules/infra_paths/example.py |
diff --git a/recipe_modules/infra_paths/example.py b/recipe_modules/infra_paths/example.py |
index f55bf058be549a5984cac164cf0716b0dfccfeab..9e6f712faa03f8329cc67480364f801ab30b18bd 100644 |
--- a/recipe_modules/infra_paths/example.py |
+++ b/recipe_modules/infra_paths/example.py |
@@ -4,7 +4,6 @@ |
DEPS = [ |
'infra_paths', |
- 'recipe_engine/path', |
'recipe_engine/platform', |
'recipe_engine/properties', |
'recipe_engine/step', |
@@ -15,16 +14,10 @@ |
def RunSteps(api): |
api.step('step', [], cwd=api.infra_paths['slave_build']) |
- if api.path.exists(api.infra_paths['slave_build'].join('foo.txt')): |
- api.step('path exists', []) |
- |
def GenTests(api): |
for platform in ('linux', 'win', 'mac'): |
- yield (api.test(platform) + |
- api.platform.name(platform) + |
- api.infra_paths.exists( |
- api.infra_paths['slave_build'].join('foo.txt'))) |
+ yield (api.test(platform) + api.platform.name(platform)) |
yield (api.test('%s_kitchen' % platform) + |
api.platform.name(platform) + |