test suite: change test to test for existence of files in current directory only

time-shift
Houtan Bastani 2017-08-29 10:25:39 +02:00
parent 09d44c89fd
commit 9a3ea53274
1 changed files with 2 additions and 2 deletions

View File

@ -38,6 +38,6 @@ perfect_foresight_solver;
rplot c;
rplot k;
if ~exist('ramst.json') || exist('ramst.log')
if ~exist('./ramst.json', 'file') || exist('./ramst.log', 'file')
error('dynare command did not honour the options provided in the mod file!')
end
end