scilab: remove disp int test

This commit is contained in:
Simon Marchetto 2014-02-21 17:30:38 +01:00
commit 35ef7b774b

View file

@ -7,7 +7,6 @@ function test_out_matrix(value_type, expected_out_matrix)
cmd = msprintf("out_matrix = out_%s_matrix_func();", value_type);
ierr = execstr(cmd, "errcatch");
if ierr <> 0 then swigtesterror(); end
disp(out_matrix);
if ~isdef('expected_out_matrix') | out_matrix <> expected_out_matrix then swigtesterror(); end
endfunction