Skip to content

Commit

Permalink
Fixed the redundant & missing test case in merged PR #2035 (#2205)
Browse files Browse the repository at this point in the history
  • Loading branch information
kchawla-pi committed Nov 9, 2019
1 parent 019e372 commit 4e1ccac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nilearn/datasets/tests/test_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def test_fetch_development_fmri():
@with_setup(tst.setup_tmpdata, tst.teardown_tmpdata)
def test_fetch_development_fmri_invalid_n_subjects():
max_subjects = 155
n_subjects = func._set_invalid_n_subjects_to_max(n_subjects=-1,
n_subjects = func._set_invalid_n_subjects_to_max(n_subjects=None,
max_subjects=max_subjects,
age_group='adult')
assert n_subjects == max_subjects
Expand Down

0 comments on commit 4e1ccac

Please sign in to comment.