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

Side by Side Diff: scripts/slave/recipe_modules/bisect_tester/test_api.py

Issue 1151423002: Move recipe engine to third_party/recipe_engine. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Moved field_composer_test with its buddies Created 5 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 from slave import recipe_test_api 1 from recipe_engine import recipe_test_api
2 2
3 3
4 class BisectTesterTestApi(recipe_test_api.RecipeTestApi): 4 class BisectTesterTestApi(recipe_test_api.RecipeTestApi):
5 @recipe_test_api.mod_test_data 5 @recipe_test_api.mod_test_data
6 @staticmethod 6 @staticmethod
7 def tempfile(tempfile): 7 def tempfile(tempfile):
8 return tempfile 8 return tempfile
9 9
10 def __call__(self, tempfile): 10 def __call__(self, tempfile):
11 return self.tempfile(tempfile) 11 return self.tempfile(tempfile)
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/bisect_tester/api.py ('k') | scripts/slave/recipe_modules/bot_update/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698