# HG changeset patch # User Julien Bect # Date 1362038247 -3600 # Node ID 6a6fef2103eb94f381fb442e590244551f98efae # Parent 236be61797850ab411dd6fe6ebf0837b08ede631 test/classes/classes.tst: Fix erroneous bug numbers in comments diff -r 236be6179785 -r 6a6fef2103eb test/classes/classes.tst --- a/test/classes/classes.tst Thu Feb 28 02:25:44 2013 -0500 +++ b/test/classes/classes.tst Thu Feb 28 08:57:27 2013 +0100 @@ -309,13 +309,13 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Test overloaded vertcat() for the Snork class -%% See bug #38170 (http://savannah.gnu.org/bugs/?38170) +%% See bug #38128 (http://savannah.gnu.org/bugs/?38128) %!test s = [s1; s2]; assert (isa (s, 'Snork') && isequal (s.gick, [x1; x2])); %!xtest s = [s1; x2]; assert (isa (s, 'Snork') && isequal (s.gick, [x1; x2])); %!xtest s = [x1; s2]; assert (isa (s, 'Snork') && isequal (s.gick, [x1; x2])); %% Test overloaded horzcat() for the Snork class -%% See bug #38170 (http://savannah.gnu.org/bugs/?38170) +%% See bug #38128 (http://savannah.gnu.org/bugs/?38128) %!test s = [s1 s2]; assert (isa (s, 'Snork') && isequal (s.gick, [x1 x2])); %!xtest s = [s1 x2]; assert (isa (s, 'Snork') && isequal (s.gick, [x1 x2])); %!xtest s = [x1 s2]; assert (isa (s, 'Snork') && isequal (s.gick, [x1 x2]));