diff --git a/matlab/utilities/doc/dynInfo.m b/matlab/utilities/doc/dynInfo.m
index 4ccc22df5de5c9241af6a3bb002ad0d72714be2f..31dff4973c918fa561739f9b533ef090b22608df 100644
--- a/matlab/utilities/doc/dynInfo.m
+++ b/matlab/utilities/doc/dynInfo.m
@@ -8,24 +8,24 @@ function dynInfo(fun)
 %! @strong{Inputs}
 %! @table @var
 %! @item fun
-%! string, name of the matlab/octave routine for which internal documentation is needed.     
+%! string, name of the matlab/octave routine for which internal documentation is needed.
 %! @end table
 %!
 %! @strong{Outputs}
 %! None
-%! 
-%! @strong{This function is called by:} 
+%!
+%! @strong{This function is called by:}
 %! @ref{dynare}, @ref{build_internal_documentation}
-%! 
+%!
 %! @strong{This function calls:}
 %! @ref{get_internal_doc_block}.
-%!    
+%!
 %! @end deftypefn
 %@eod:
-    
+
 % Copyright (C) 2011 Dynare Team
 % stephane DOT adjemian AT univ DASH lemans DOT fr
-%    
+%
 % This file is part of Dynare.
 %
 % Dynare is free software: you can redistribute it and/or modify
@@ -40,7 +40,9 @@ function dynInfo(fun)
 %
 % You should have received a copy of the GNU General Public License
 % along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
-    
+
+dynare_config([],0);
+
 [pathstr, name, ext] = fileparts(which(fun));
 if strcmp(ext(2:end),'m')
     block = get_internal_doc_block(name,pathstr);
diff --git a/matlab/utilities/tests/dynTest.m b/matlab/utilities/tests/dynTest.m
index a21a231159b00a028cbd40f06e4c994ecfa272ae..43d4aa6b2d0479575d933d3b23ec0619b13cf729 100644
--- a/matlab/utilities/tests/dynTest.m
+++ b/matlab/utilities/tests/dynTest.m
@@ -41,7 +41,10 @@ function dynTest(fun)
 % You should have received a copy of the GNU General Public License
 % along with Dynare.  If not, see <http://www.gnu.org/licenses/>.
 
+dynare_config([],0);
+
 [pathstr, name, ext] = fileparts(which(fun));
+
 if ~( isempty(pathstr) || isempty(name) || isempty(ext) ) && strcmp(ext(2:end),'m')
     check = mtest(name,pathstr);
     if check