Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
lajohn4747 committed May 2, 2024
1 parent 99868f3 commit 0e0467f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/unit/metadata/test_multi_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -1201,7 +1201,10 @@ def test_validate_raises_errors(self):

# Run and Assert
with pytest.raises(InvalidMetadataError, match=error_msg):
instance._validate_all_tables_connected(instance._get_parent_map(), instance._get_child_map())
instance._validate_all_tables_connected(
instance._get_parent_map(),
instance._get_child_map()
)

def test_validate_child_key_is_primary_key(self):
"""Test it crashes if the child key is a primary key."""
Expand Down

0 comments on commit 0e0467f

Please sign in to comment.