Skip to content

Commit 9c7a431

Browse files
authored
Update pandas/tests/frame/test_constructors.py
1 parent cb2bc30 commit 9c7a431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/test_constructors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ def test_constructor_DataFrame(self, float_frame):
12041204
assert df_casted.values.dtype == np.int64
12051205

12061206
def test_constructor_empty_DataFrame(self):
1207-
# GH 20624
1207+
# GH 20624
12081208
actual = pd.DataFrame(pd.DataFrame(), dtype="object")
12091209
expected = pd.DataFrame([], dtype="object")
12101210
tm.assert_frame_equal(actual, expected)

0 commit comments

Comments
 (0)