From 048ec5a57487791fd35172a0e016e8394d7174d0 Mon Sep 17 00:00:00 2001 From: Andrew Montanez Date: Wed, 11 Sep 2024 17:40:09 -0500 Subject: [PATCH] fix lint --- tests/unit/metadata/test_metadata.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/unit/metadata/test_metadata.py b/tests/unit/metadata/test_metadata.py index 801e527d9..1748f4c92 100644 --- a/tests/unit/metadata/test_metadata.py +++ b/tests/unit/metadata/test_metadata.py @@ -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()}