| Index: recipe_modules/properties/example.py
|
| diff --git a/recipe_modules/properties/example.py b/recipe_modules/properties/example.py
|
| index 3addbabb60fb0265492eb038f9159478c030a2c2..ae25a2f9c270319f144caa275d6f2a8b21d3f430 100644
|
| --- a/recipe_modules/properties/example.py
|
| +++ b/recipe_modules/properties/example.py
|
| @@ -23,8 +23,7 @@ def RunSteps(api, test_prop, param_name_test):
|
| # It should behave like a real dictionary.
|
| assert len(properties) == len(api.properties)
|
| for k in api.properties:
|
| - assert k in properties
|
| - # We would assert that v is there too, but sometimes it's frozen...
|
| + api.step('echo %s' % k, ['echo', repr(api.properties[k])])
|
|
|
|
|
| def GenTests(api):
|
|
|