Skip to content

Commit 0674035

Browse files
committed
mh fix
1 parent 5e994c3 commit 0674035

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

manualTests/test_makeRawDataset.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ function test_makeRawDataset()
7474
stimLogFile.extraColumns.Speed.length = 1;
7575
stimLogFile.extraColumns.LHL24.length = 3;
7676
stimLogFile.extraColumns.is_Fixation.length = 1;
77-
77+
7878
stimLogFile.SamplingFrequency = 100;
7979
stimLogFile.StartTime = 0;
80-
80+
8181
stimLogFile = saveEventsFile('open_stim', cfg, stimLogFile);
8282
for i = 1:100
8383
stimLogFile(i, 1).onset = cfg.mri.repetitionTime * i;

src/createDataDictionary.m

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ function createDataDictionary(cfg, logFile)
3737
);
3838

3939
if ismember('_stim', fullFilename)
40-
40+
4141
samplingFrequency = nan;
4242
startTime = nan;
43-
43+
4444
if isfield(logFile, 'SamplingFrequency')
45-
samplingFrequency = logFile(1).SamplingFrequency;
45+
samplingFrequency = logFile(1).SamplingFrequency;
4646
end
4747
if isfield(logFile, 'StartTime')
48-
startTime = logFile(1).StartTime;
48+
startTime = logFile(1).StartTime;
4949
end
5050

5151
jsonContent = struct( ...

tests/test_createDataDictionary.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function test_createDataDictionaryBasic()
2828
logFile.extraColumns.Speed.length = 1;
2929
logFile.extraColumns.LHL24.length = 3;
3030
logFile = saveEventsFile('init', cfg, logFile);
31-
31+
3232
logFile = saveEventsFile('open', cfg, logFile);
3333

3434
createDataDictionary(cfg, logFile);

0 commit comments

Comments
 (0)