changeset 22427:2a00f323cd94

Don't use 'X' as gnuplot_binary name in BIST tests. * gnuplot_binary.in.m: Use '__foobar__' as name of binary in BIST tests.
author Rik <rik@octave.org>
date Fri, 02 Sep 2016 08:20:21 -0700
parents 7e152b7c2a2c
children 994dc0f7a6ce
files scripts/plot/util/gnuplot_binary.in.m
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/util/gnuplot_binary.in.m	Fri Sep 02 10:48:30 2016 +0200
+++ b/scripts/plot/util/gnuplot_binary.in.m	Fri Sep 02 08:20:21 2016 -0700
@@ -60,8 +60,9 @@
 
 %!test
 %! orig_val = gnuplot_binary ();
-%! old_val = gnuplot_binary ("X");
+%! old_val = gnuplot_binary ("__foobar__");
 %! assert (orig_val, old_val);
-%! assert (gnuplot_binary (), "X");
+%! assert (gnuplot_binary (), "__foobar__");
 %! gnuplot_binary (orig_val);
 %! assert (gnuplot_binary (), orig_val);
+