Skip to content

Commit

Permalink
Merge pull request #25 from uc-cdis/fix/submitter_id
Browse files Browse the repository at this point in the history
fix(test): ignore internal nodes
  • Loading branch information
philloooo authored Oct 22, 2018
2 parents 0bd4c7f + 52cd064 commit a029e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_required_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_required_ubiquitous_fields():
]
for schema in dictionary.schema.values():
if not schema['id'] == 'program' and not schema['id'] == 'project' \
and not schema['id'] == 'root':
and not schema['category'] == 'internal':
for field in required_fields:
assert field in schema['properties'], \
'{} is required but not in {}'.format(field, schema['id'])
Expand Down

0 comments on commit a029e19

Please sign in to comment.