8000 Fix some typos in test names. · matplotlib/matplotlib@152aab5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 152aab5

Browse files
committed
Fix some typos in test names.
1 parent b5053b6 commit 152aab5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/matplotlib/tests/test_axes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2236,10 +2236,10 @@ def test_bxp_rangewhis():
22362236
_bxp_test_helper(stats_kwargs=dict(whis=[0, 100]))
22372237

22382238

2239-
@image_comparison(['bxp_precentilewhis.png'],
2239+
@image_comparison(['bxp_percentilewhis.png'],
22402240
savefig_kwarg={'dpi': 40},
22412241
style='default')
2242-
def test_bxp_precentilewhis():
2242+
def test_bxp_percentilewhis():
22432243
_bxp_test_helper(stats_kwargs=dict(whis=[5, 95]))
22442244

22452245

@@ -6208,7 +6208,7 @@ def test_bbox_aspect_axes_init():
62086208
assert_allclose(sizes, sizes[0])
62096209

62106210

6211-
def test_pi_get_negative_values():
6211+
def test_pie_get_negative_values():
62126212
# Test the ValueError raised when feeding negative values into axes.pie
62136213
fig, ax = plt.subplots()
62146214
with pytest.raises(ValueError):

lib/matplotlib/tests/test_mlab.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ def test_apply_window_hanning_2D_axis1(self):
303303
assert x.shape == y.shape
304304
assert_allclose(yt, y, atol=1e-06)
305305

306-
def test_apply_window_hanning_2D__els1_axis1(self):
306+
def test_apply_window_hanning_2D_els1_axis1(self):
307307
x = np.random.standard_normal([10, 1000]) + 100.
308308
window = mlab.window_hanning(np.ones(x.shape[1]))
309309
window1 = mlab.window_hanning

0 commit comments

Comments
 (0)
0