changeset 22443:70aa2b362a31

* findobj.m: Fix failing test after default color change in cset 638625a0186f.
author Mike Miller <mtmiller@octave.org>
date Tue, 06 Sep 2016 16:23:03 -0700
parents 638625a0186f
children d77caa2d523d
files scripts/plot/util/findobj.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/util/findobj.m	Tue Sep 06 15:06:34 2016 -0700
+++ b/scripts/plot/util/findobj.m	Tue Sep 06 16:23:03 2016 -0700
@@ -300,7 +300,7 @@
 %!test
 %! hf = figure ("visible", "off");
 %! unwind_protect
-%!   h = plot (1:10);
+%!   h = plot (1:10, "b");
 %!   set (h, "tag", "foobar");
 %!   g = findobj (gcf (), "tag", "foobar", "type", "line", "color", [0 0 1]);
 %!   assert (g, h);