Skip to content

Commit 574d22f

Browse files
committed
CLN: pd.DataFrame -> DataFrame
1 parent 0cf7d9c commit 574d22f

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
@@ -338,7 +338,7 @@ def test_describe_when_include_all_exclude_not_allowed(self, exclude):
338338
"""
339339
When include is 'all', then setting exclude != None is not allowed.
340340
"""
341-
df = pd.DataFrame({"x": [1], "y": [2], "z": [3]})
341+
df = DataFrame({"x": [1], "y": [2], "z": [3]})
342342
msg = "exclude must be None when include is 'all'"
343343
with pytest.raises(ValueError, match=msg):
344344
df.describe(include="all", exclude=exclude)

0 commit comments

Comments
 (0)