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 9853f0e commit e4488b3Copy full SHA for e4488b3
pandas/tests/indexing/test_at.py
@@ -14,7 +14,6 @@
14
MultiIndex,
15
Series,
16
Timestamp,
17
- to_datetime,
18
)
19
import pandas._testing as tm
20
@@ -99,11 +98,7 @@ def test_at_setitem_categorical_missing(self):
99
98
100
tm.assert_frame_equal(df, expected)
101
102
- @pytest.mark.parametrize("row",
103
- (Timestamp("2019-01-01"),
104
- to_datetime("2019-01-01"),
105
- "2019-01-01")
106
- )
+ @pytest.mark.parametrize("row", (Timestamp("2019-01-01"), "2019-01-01"))
107
def test_at_datetime_index(self, row):
108
df = DataFrame(
109
data=[[1] * 2],
0 commit comments