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 7da2488 commit 3e83b1cCopy full SHA for 3e83b1c
pandas/tests/frame/test_constructors.py
@@ -2961,7 +2961,7 @@ def test_from_dict_with_mapping(self):
2961
tm.assert_series_equal(df["A"], Series(idx, name="A"))
2962
tm.assert_series_equal(df["B"], Series(dr, name="B"))
2963
2964
- def test_from_mappiog_list(self):
+ def test_from_mapping_list(self):
2965
idx = Index(date_range("20130101", periods=3, tz="US/Eastern"), name="foo")
2966
dr = date_range("20130110", periods=3)
2967
data = DataFrame({"A": idx, "B": dr})
@@ -2976,7 +2976,7 @@ def test_from_mappiog_list(self):
2976
2977
2978
2979
- def test_from_mappiog_sequence(self):
+ def test_from_mapping_sequence(self):
2980
2981
2982
0 commit comments