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

Unified Diff: recipes/engine_tests/recipe_paths.py

Issue 2669033007: [recipe_engine] Fix a couple path-related bugs. (Closed)
Patch Set: Fix remainder of presubmit tests Created 3 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
Index: recipes/engine_tests/recipe_paths.py
diff --git a/recipes/engine_tests/recipe_paths.py b/recipes/engine_tests/recipe_paths.py
index 07ef35bea2af6c990059062a8c3b63a0a9380c2f..80aaa1dc213741acadc43c2fe145b0a493c4a92e 100644
--- a/recipes/engine_tests/recipe_paths.py
+++ b/recipes/engine_tests/recipe_paths.py
@@ -11,7 +11,7 @@ DEPS = [
]
def RunSteps(api):
- api.step('recipe_name', ['echo', api.name])
+ api.step('recipe_name', ['echo', 'recipe name is', api.name])
api.python('some_resource', api.resource('hello.py'))
api.step('package_root', ['echo', api.package_repo_resource('file', 'path')])

Powered by Google App Engine
This is Rietveld 408576698