diff --git a/tests/initval_file/ramst_initval_file.mod b/tests/initval_file/ramst_initval_file.mod
index 0d0cdabb4c7e30cfa2dc249ea771a831c05eae8b..2cc8f91ed9f9cd5efaf80a762bf9c1ec03c080ee 100644
--- a/tests/initval_file/ramst_initval_file.mod
+++ b/tests/initval_file/ramst_initval_file.mod
@@ -22,20 +22,34 @@ k = ((delt+bet)/(1.0*aa*alph))^(1/(alph-1));
 c = aa*k^alph-delt*k;
 end;
 
-initval_file(filename = ramst_initval_file_data_row_vec_mat);
 steady;
+
+initval_file(filename = ramst_initval_file_data_row_vec_mat);
+if oo_.exo_simul(2) ~= 1.2
+  error('initval_file problem with exogenous variable');
+end
+if oo_.endo_simul(2, 2) ~= 13
+  error('initval_file option problem with endogenous variable');
+end
 perfect_foresight_setup(periods=200);
 perfect_foresight_solver;
 
+oo_.exo_simul = [];
+oo_.endo_simul = [];
 
 initval_file(filename = ramst_initval_file_data_col_vec_mat);
-steady;
+if oo_.exo_simul(2) ~= 1.2
+  error('initval_file problem with exogenous variable');
+end
+if oo_.endo_simul(2, 2) ~= 13
+  error('initval_file problem with endogenous variable');
+end
+
 perfect_foresight_setup(periods=200);
 perfect_foresight_solver;
 
 if ispc()
     initval_file(filename = ramst_initval_file_excel);
-    steady;
     perfect_foresight_setup(periods=200);
     perfect_foresight_solver;
 end
diff --git a/tests/initval_file/ramst_initval_file_data.m b/tests/initval_file/ramst_initval_file_data.m
index 16c389781f5137b60170ad36e60a8b608660a117..cc1914ca12367299d7db18040458f34389e1bb54 100644
--- a/tests/initval_file/ramst_initval_file_data.m
+++ b/tests/initval_file/ramst_initval_file_data.m
@@ -1,6 +1,6 @@
 x = vertcat([ 1; 1.2 ], repmat(1, 200, 1));
-k = repmat(12.7551, 202, 1);
-c = repmat(1.53061, 202, 1);
+k = repmat(13, 202, 1);
+c = repmat(1.5, 202, 1);
 save('ramst_initval_file_data_col_vec_mat.mat','c','k','x');
 
 if ispc()
@@ -11,4 +11,4 @@ end
 c=c';
 k=k';
 x=x';
-save('ramst_initval_file_data_row_vec_mat.mat','c','k','x');
\ No newline at end of file
+save('ramst_initval_file_data_row_vec_mat.mat','c','k','x');