Skip to content

Commit

Permalink
test: Fix BODS test
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Dec 15, 2024
1 parent 3ed7c16 commit bc5f6d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
def test_bods_0_4():
schema = load("bods", "schema-0-4-0.json")

actual = {field.path_components for field in get_schema_fields(schema)}
actual = {field.path_components for field in get_schema_fields(schema) if not field.definition}

# 139
assert actual == {
Expand Down

0 comments on commit bc5f6d8

Please sign in to comment.