Skip to content

Commit d386065

Browse files
authored
BUG: Fix typos in test method names (#62197)
1 parent 157e0de commit d386065

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas/tests/groupby/test_libgroupby.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def test_cython_group_mean_not_datetimelike_but_has_NaT_values():
285285
)
286286

287287

288-
def test_cython_group_mean_Inf_at_begining_and_end():
288+
def test_cython_group_mean_Inf_at_beginning_and_end():
289289
# GH 50367
290290
actual = np.array([[np.nan, np.nan], [np.nan, np.nan]], dtype="float64")
291291
counts = np.array([0, 0], dtype="int64")
@@ -314,7 +314,7 @@ def test_cython_group_mean_Inf_at_begining_and_end():
314314
([[np.inf], [-np.inf], [-np.inf]], [[np.inf], [-np.inf]]),
315315
],
316316
)
317-
def test_cython_group_sum_Inf_at_begining_and_end(values, out):
317+
def test_cython_group_sum_Inf_at_beginning_and_end(values, out):
318318
# GH #53606
319319
actual = np.array([[np.nan], [np.nan]], dtype="float64")
320320
counts = np.array([0, 0], dtype="int64")

pandas/tests/reshape/test_from_dummies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def test_error_contains_non_dummies():
100100
from_dummies(dummies)
101101

102102

103-
def test_error_with_prefix_multiple_seperators():
103+
def test_error_with_prefix_multiple_separators():
104104
dummies = DataFrame(
105105
{
106106
"col1_a": [1, 0, 1],

0 commit comments

Comments
 (0)