Adapted unitary tests for octave.

time-shift
Stéphane Adjemian (Scylla) 2013-11-29 19:01:17 +01:00
parent 59f1967347
commit e1bff2c885
1 changed files with 6 additions and 2 deletions

View File

@ -460,7 +460,7 @@ end
%$ % Instantiate a time series object.
%$ try
%$ ts1 = dseries(A,[],A_name,[]);
%$ ts1.save;
%$ ts1.save('ts1');
%$ t = 1;
%$ catch
%$ t = 0;
@ -578,7 +578,11 @@ end
%$ % Instantiate a time series object.
%$ try
%$ ts1 = dseries(A,[],A_name,[]);
%$ ts1.save();
%$ if isoctave
%$ ts1.save('ts1');
%$ else
%$ ts1.save();
%$ end
%$ t = 1;
%$ catch
%$ t = 0;