We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb886c commit 5569126Copy full SHA for 5569126
pandas/tests/io/test_feather.py
@@ -102,8 +102,8 @@ def test_read_columns(self):
102
103
def test_unsupported_other(self):
104
105
- # period
106
- df = pd.DataFrame({"a": pd.period_range("2013", freq="M", periods=3)})
+ # mixed python objects
+ df = pd.DataFrame({"a": ["a", 1, 2.0]})
107
# Some versions raise ValueError, others raise ArrowInvalid.
108
self.check_error_on_write(df, Exception)
109
0 commit comments