Skip to content

Commit a98b023

Browse files
committed
TEST: Rename tests to ensure running
1 parent 6061651 commit a98b023

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

nibabel/tests/test_recoder.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def test_recoder_3():
4949
with pytest.raises(AttributeError):
5050
rc.label
5151

52-
def test_recoder_3():
52+
def test_recoder_4():
5353
# with explicit column names
5454
codes = ((1, 'one'), (2, 'two'))
5555
rc = Recoder(codes, ['code1', 'label'])
@@ -61,7 +61,7 @@ def test_recoder_3():
6161
assert rc.label['one'] == 'one'
6262

6363

64-
def test_recoder_4():
64+
def test_recoder_5():
6565
# code, label, aliases
6666
codes = ((1, 'one', '1', 'first'), (2, 'two'))
6767
rc = Recoder(codes) # just with implicit alias
@@ -70,7 +70,7 @@ def test_recoder_4():
7070
assert rc.code['first'] == 1
7171

7272

73-
def test_recoder_5():
73+
def test_recoder_6():
7474
# with explicit column names
7575
codes = ((1, 'one', '1', 'first'), (2, 'two'))
7676
rc = Recoder(codes, ['code1', 'label'])

0 commit comments

Comments
 (0)