Skip to content

Commit e8be104

Browse files
committed
fix tests
1 parent 2ce5b6d commit e8be104

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cff-version: 1.2.0
22

33
title: "CPP ROI"
44

5-
version: v0.2.0dev
5+
version: 0.2.0dev
66

77
abstract: Set of Octave and Matlab functions, demos and scripts to help manage ROIs and to play nice with BIDS datasets.
88

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.PHONY: clean install_dev
22

3-
clean:
3+
clean: clean_lib
44
rm -rf coverage*
5-
rm version.txt
5+
rm -f version.txt
66

77
clean_lib:
88
rm -rf lib/bids-matlab

src/roi/plotDataInRoi.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
nbBins = max(nbBinsList);
154154
end
155155

156-
maxVox = getMaxVox(args, data);
156+
maxVox = getMaxVox(args, data, nbBins);
157157

158158
%% plot histogram and mode
159159

@@ -247,7 +247,7 @@ function labelAxis(roiAs, rows, cols, subplotList, roiImages, dataLabel)
247247

248248
end
249249

250-
function maxVox = getMaxVox(args, data)
250+
function maxVox = getMaxVox(args, data, nbBins)
251251

252252
maxVox = args.Results.maxVox;
253253

0 commit comments

Comments
 (0)