# HG changeset patch # User John W. Eaton # Date 1586985831 14400 # Node ID ad9252d7472b4bf7aa9bf7601b60557e8c3e5a8b # Parent 45763d59cb4fc8c1c94c7bff5f8492f119378caf eliminate output from io.tst * io.tst: Eliminate extraneous output from recently added test. diff -r 45763d59cb4f -r ad9252d7472b test/io.tst --- a/test/io.tst Wed Apr 15 15:55:32 2020 -0400 +++ b/test/io.tst Wed Apr 15 17:23:51 2020 -0400 @@ -933,12 +933,12 @@ %! r_mode = r_modes{j}; %! for k = 1:numel (f_texts); %! f_text = f_texts{k}; -%! fname = tempname () +%! fname = tempname (); %! fid = fopen (fname, w_mode); %! unwind_protect %! fprintf (fid, "%s", f_text); %! fclose (fid); -%! fid = fopen (fname, r_mode) +%! fid = fopen (fname, r_mode); %! fgetl (fid); %! pos = ftell (fid); %! buf1 = fgetl (fid);