Skip to content

Commit

Permalink
host_type is more accurate variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
groovecoder committed Aug 22, 2016
1 parent e2f8e9a commit af77b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/json_verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ def find_uris_in_entities(entitylist_json):
for entity, types in entitylist_json.iteritems():
assert type(entity) is UnicodeType
assert type(types) is DictType
for prop_type, uris in types.iteritems():
assert prop_type in ["properties", "resources"]
for host_type, uris in types.iteritems():
assert host_type in ["properties", "resources"]
assert type(uris) is ListType
[check_uri(uri) for uri in uris]

Expand Down

0 comments on commit af77b76

Please sign in to comment.