Skip to content

Commit d47c0d8

Browse files
author
Nico Cernek
committed
correct the imports
1 parent 307ff39 commit d47c0d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/reshape/merge/test_merge.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2091,11 +2091,11 @@ def test_right_merge_preserves_row_order():
20912091
("Carl", "Canada", 30),
20922092
]
20932093
columns = ["name", "country", "population"]
2094-
pop = pd.DataFrame.from_records(population, columns=columns)
2094+
pop = DataFrame.from_records(population, columns=columns)
20952095

20962096
people = [("Abe", "America"), ("Beth", "Bulgaria"), ("Carl", "Canada")]
20972097
columns = ["name", "country"]
2098-
ppl = pd.DataFrame.from_records(people, columns=columns)
2098+
ppl = DataFrame.from_records(people, columns=columns)
20992099

21002100
expected_data = [
21012101
("Abe", "America", np.nan),

0 commit comments

Comments
 (0)