Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d967762

Browse files
committed
De-duplicate test names
1 parent ca5b925 commit d967762

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/tests/test_mlab.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@ def test_detrend_detrend_linear_1d_slope_off_axis1(self):
11191119
res = mlab.detrend(input, key=mlab.detrend_linear, axis=0)
11201120
assert_allclose(res, targ, atol=self.atol)
11211121

1122-
def test_detrend_str_linear_2d_slope_off_axis0(self):
1122+
def test_detrend_str_linear_2d_slope_off_axis0_notranspose(self):
11231123
arri = [self.sig_off,
11241124
self.sig_slope,
11251125
self.sig_slope + self.sig_off]
@@ -1131,7 +1131,7 @@ def test_detrend_str_linear_2d_slope_off_axis0(self):
11311131
res = mlab.detrend(input, key='linear', axis=1)
11321132
assert_allclose(res, targ, atol=self.atol)
11331133

1134-
def test_detrend_detrend_linear_1d_slope_off_axis1(self):
1134+
def test_detrend_detrend_linear_1d_slope_off_axis1_notranspose(self):
11351135
arri = [self.sig_off,
11361136
self.sig_slope,
11371137
self.sig_slope + self.sig_off]

0 commit comments

Comments
 (0)