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

Unified Diff: recipe_engine/unittests/run_test.py

Issue 1421843006: Add simple depends_on API. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/recipes-py@master
Patch Set: Remove old expectation, move tests to their own folder. Created 5 years, 1 month 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/loader_test.py ('k') | recipes.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/unittests/run_test.py
diff --git a/recipe_engine/unittests/run_test.py b/recipe_engine/unittests/run_test.py
index c2eb3dfbb68d35f5495f057d883024ce9cb612a3..c07091edd488ae73d9f8488e150de79d1154c2ba 100755
--- a/recipe_engine/unittests/run_test.py
+++ b/recipe_engine/unittests/run_test.py
@@ -71,7 +71,7 @@ class RunTest(unittest.TestCase):
api._engine = mock.Mock()
api._engine.properties = properties
- engine = recipe_engine.run.RecipeEngine(stream, properties, test_data)
+ engine = recipe_engine.run.RecipeEngine(stream, properties, test_data, None)
class FakeScript(object):
def run(self, _, __):
@@ -82,7 +82,6 @@ class RunTest(unittest.TestCase):
engine.run(FakeScript(), api)
-
if __name__ == '__main__':
unittest.TestCase.maxDiff = None
unittest.main()
« no previous file with comments | « recipe_engine/unittests/loader_test.py ('k') | recipes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698