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

Unified Diff: recipe_modules/path/example.py

Issue 2846703003: [recipes.py] move run arg parsing to its module. (Closed)
Patch Set: fix nits Created 3 years, 8 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 | « recipe_engine/unittests/run_test.py ('k') | recipes.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/path/example.py
diff --git a/recipe_modules/path/example.py b/recipe_modules/path/example.py
index 213b07ec40f14fa3cc5ddc3942ab8492378279ac..1a175734134028b301be8e4e2f4187779dbac45f 100644
--- a/recipe_modules/path/example.py
+++ b/recipe_modules/path/example.py
@@ -67,7 +67,7 @@ def RunSteps(api):
for p in paths_to_convert:
after = api.path.abs_to_path(str(p))
api.step('converted path %s' % p, ['echo', after])
- assert after == p, p
+ assert after == p, (after, p)
try:
api.path.abs_to_path('non/../absolute')
« no previous file with comments | « recipe_engine/unittests/run_test.py ('k') | recipes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698