Skip to content

Commit c171633

Browse files
KhemkaranKhemkaran
authored andcommitted
minor change in test test_describe_when_included_dtypes_not_present
1 parent d714b90 commit c171633

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/methods/test_describe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ def test_describe_when_include_all_exclude_not_allowed(self, exclude):
373373

374374
def test_describe_when_included_dtypes_not_present(self):
375375
# GH#61863
376-
df = pd.DataFrame({"a": [1, 2, 3]})
376+
df = DataFrame({"a": [1, 2, 3]})
377377
msg = "None of the included dtypes are present in the DataFrame"
378378
with pytest.raises(ValueError, match=msg):
379379
df.describe(include=["datetime"])

0 commit comments

Comments
 (0)