Skip to content

Commit 438469f

Browse files
committed
Remove unnecessary module abbreviation
1 parent 532f76d commit 438469f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/frame/test_constructors.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1205,8 +1205,8 @@ def test_constructor_DataFrame(self, float_frame):
12051205

12061206
def test_constructor_empty_dataframe(self):
12071207
# GH 20624
1208-
actual = pd.DataFrame(pd.DataFrame(), dtype="object")
1209-
expected = pd.DataFrame([], dtype="object")
1208+
actual = DataFrame(DataFrame(), dtype="object")
1209+
expected = DataFrame([], dtype="object")
12101210
tm.assert_frame_equal(actual, expected)
12111211

12121212
def test_constructor_more(self, float_frame):

0 commit comments

Comments
 (0)