changeset 28224:ad9252d7472b stable

eliminate output from io.tst * io.tst: Eliminate extraneous output from recently added test.
author John W. Eaton <jwe@octave.org>
date Wed, 15 Apr 2020 17:23:51 -0400
parents 45763d59cb4f
children fbced93c9704
files test/io.tst
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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);