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 604575b commit 05fb494Copy full SHA for 05fb494
1 file changed
MOST/tests/TestMOST.m
@@ -34,7 +34,7 @@ function captureVisibility(testCase)
34
testCase.OriginalDefault = get(0,'DefaultFigureVisible');
35
end
36
function runBEMIO(testCase)
37
- cd(testCase.hydroDataDir);
+ cd(fullfile(testCase.testDir, testCase.hydroDataDir));
38
if isfile(testCase.h5Name)
39
fprintf('runBEMIO skipped, *.h5 already exists\n');
40
else
@@ -45,7 +45,7 @@ function runBEMIO(testCase)
45
function runMOSTIO(testCase)
46
% Test the pre-processing here so that it does not interfere
47
% with the precise comparison of results.
48
- cd(testCase.mostDataDir);
+ cd(fullfile(testCase.testDir, testCase.mostDataDir));
49
mostIO
50
cd(testCase.testDir)
51
0 commit comments