| Index: recipe_modules/step/tests/subannotations.py
|
| diff --git a/recipes/engine_tests/subannotations.py b/recipe_modules/step/tests/subannotations.py
|
| similarity index 74%
|
| rename from recipes/engine_tests/subannotations.py
|
| rename to recipe_modules/step/tests/subannotations.py
|
| index 04519be28e903f7dfcaa8b95d1afdeb260775946..19ee211293cc207c1c99950883ad43a741ac805e 100644
|
| --- a/recipes/engine_tests/subannotations.py
|
| +++ b/recipe_modules/step/tests/subannotations.py
|
| @@ -6,7 +6,9 @@ DEPS = ['step']
|
|
|
| def RunSteps(api):
|
| api.step('Dont subannotate me', ['echo', '@@@BUILD_STEP@steppy@@@'])
|
| - api.step('Subannotate me', ['echo', '@@@BUILD_STEP@pippy@@@'], allow_subannotations=True)
|
| + api.step('Subannotate me',
|
| + ['echo', '@@@BUILD_STEP@pippy@@@'],
|
| + allow_subannotations=True)
|
|
|
| def GenTests(api):
|
| yield api.test('basic')
|
|
|