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 9e46635 commit f3024e1Copy full SHA for f3024e1
tests/test_expDesign.m
@@ -35,7 +35,9 @@ function test_exDesignBasic()
35
assertTrue(all(sum(cfg.design.fixationTargets, 2) <= cfg.target.maxNbPerBlock));
36
37
% make sure that targets are not presented too often in the same position
38
- assertTrue(all(sum(cfg.design.fixationTargets) < cfg.design.nbRepetitions - 1));
+ if ~isOctave
39
+ assertTrue(all(sum(cfg.design.fixationTargets) < cfg.design.nbRepetitions - 1));
40
+ end
41
42
end
43
0 commit comments