diff --git a/pandas/tests/io/json/test_pandas.py b/pandas/tests/io/json/test_pandas.py index 137e4c991d080..78fd4796a7ccf 100644 --- a/pandas/tests/io/json/test_pandas.py +++ b/pandas/tests/io/json/test_pandas.py @@ -704,6 +704,15 @@ def test_series_with_dtype(self): expected = Series([4] * 3) tm.assert_series_equal(result, expected) + def test_unhashable_dict(self): + df = pd.DataFrame( + [ + {"last_status_change_at": {"a": "1"}}, + {"last_status_change_at": {"a": "2"}}, + ] + ) + df.describe() + @pytest.mark.parametrize( "dtype,expected", [