Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Unified Diff: scripts/slave/recipes/infra/recipe_simulation.py

Issue 1577683003: Fix recipe_simulation test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | scripts/slave/recipes/infra/recipe_simulation.expected/normal.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipes/infra/recipe_simulation.py
diff --git a/scripts/slave/recipes/infra/recipe_simulation.py b/scripts/slave/recipes/infra/recipe_simulation.py
index 8687765115f6465ec6df79a4db27e4cd4cd9c6b0..53d3e7837182003c0a6369240756979fb001a3ec 100644
--- a/scripts/slave/recipes/infra/recipe_simulation.py
+++ b/scripts/slave/recipes/infra/recipe_simulation.py
@@ -8,7 +8,7 @@ DEPS = [
'gclient',
'recipe_engine/path',
'recipe_engine/properties',
- 'recipe_engine/step',
+ 'recipe_engine/python',
]
@@ -16,8 +16,8 @@ def RunSteps(api):
api.gclient.set_config('build')
api.bot_update.ensure_checkout(force=True)
recipes_py = api.path['checkout'].join('scripts', 'slave', 'recipes.py')
- api.step('recipe fetch deps', [recipes_py, 'fetch'])
- api.step('recipe simulation test', [recipes_py, 'simulation_test'])
+ api.python('recipe fetch deps', recipes_py, ['fetch'])
+ api.python('recipe simulation test', recipes_py, ['simulation_test'])
def GenTests(api):
« no previous file with comments | « no previous file | scripts/slave/recipes/infra/recipe_simulation.expected/normal.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698