Skip to content

Commit

Permalink
Fix minor bug in test setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
pcerf committed Jun 18, 2018
1 parent f540f61 commit c23d29a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MATLAB/+qc/qctoolkitTestSetup.m
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
warning(err.getReport());
end
load(fullfile(tunePath, 'smdata_recent.mat'));
info = dir(fullfile(loadPath, 'smdata_recent.mat'));
info = dir(fullfile(tunePath, 'smdata_recent.mat'));
fprintf('Loaded smdata from %s', datestr(info.datenum));
end
try
Expand All @@ -39,7 +39,7 @@
warning(err.getReport());
end
load(fullfile(tunePath, 'tunedata_recent.mat'));
info = dir(fullfile(loadPath, 'tunedata_recent.mat'));
info = dir(fullfile(tunePath, 'tunedata_recent.mat'));
fprintf('Loaded tunedata from %s', datestr(info.datenum));

try
Expand All @@ -48,7 +48,7 @@
warning(err.getReport());
end
load(fullfile(tunePath, 'plsdata_recent.mat'));
info = dir(fullfile(loadPath, 'plsdata_recent.mat'));
info = dir(fullfile(tunePath, 'plsdata_recent.mat'));
fprintf('Loaded plsdata from %s', datestr(info.datenum));

global tunedata
Expand Down

0 comments on commit c23d29a

Please sign in to comment.