Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
amontanez24 committed Sep 11, 2024
1 parent 4cc8e53 commit 048ec5a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/unit/metadata/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,10 @@ def test_detect_from_dataframes(self, mock_metadata):
mock_metadata.return_value._detect_relationships.assert_called_once_with(data)

def test_detect_from_dataframes_bad_input(self):
"""Test that an error is raised if the dictionary contains something other than DataFrames."""
"""Test that an error is raised if the dictionary contains something other than DataFrames.
If the data contains values that aren't pandas.DataFrames, it should error.
"""
# Setup
data = {'guests': Mock(), 'hotels': Mock()}

Expand Down

0 comments on commit 048ec5a

Please sign in to comment.