We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16b028b commit dc8155fCopy full SHA for dc8155f
pandas/tests/frame/test_constructors.py
@@ -2945,7 +2945,7 @@ def test_from_dict_with_mapping(self):
2945
tm.assert_series_equal(df["A"], Series(idx, name="A"))
2946
tm.assert_series_equal(df["B"], Series(dr, name="B"))
2947
2948
- def test_from_mappiog_list(self):
+ def test_from_mapping_list(self):
2949
idx = Index(date_range("20130101", periods=3, tz="US/Eastern"), name="foo")
2950
dr = date_range("20130110", periods=3)
2951
data = DataFrame({"A": idx, "B": dr})
@@ -2960,7 +2960,7 @@ def test_from_mappiog_list(self):
2960
2961
2962
2963
- def test_from_mappiog_sequence(self):
+ def test_from_mapping_sequence(self):
2964
2965
2966
0 commit comments