We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48fb815 commit 1b22dd1Copy full SHA for 1b22dd1
bids/modeling/tests/test_statsmodels.py
@@ -105,7 +105,9 @@ def test_entire_graph_smoketest(graph):
105
# At dataset level, do one-sample t-tests separately for each gender,
106
# but also two-sample t-tests comparing males and females.
107
# Note that there are only 2 subjects in the graph.
108
- outputs = graph["run"].run(group_by=['subject', 'run'])
+ # Note also that there is only one session (with no session label), which
109
+ # should have no effect as a grouping variable
110
+ outputs = graph["run"].run(group_by=['subject', 'session', 'run'])
111
# 2 subjects x 3 runs
112
assert len(outputs) == 6
113
cis = list(chain(*[op.contrasts for op in outputs]))
0 commit comments