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

Unified Diff: recipe_modules/properties/example.py

Issue 2806373004: Enable strict coverage for json, path, platform, properties, raw_io (Closed)
Patch Set: rebase 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_modules/properties/__init__.py ('k') | recipe_modules/properties/example.expected/basic.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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):
« no previous file with comments | « recipe_modules/properties/__init__.py ('k') | recipe_modules/properties/example.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698