diff test/test_struct.m @ 10399:81bcdf5fd7a9

modernize failing tests
author Jaroslav Hajek <highegg@gmail.com>
date Fri, 05 Mar 2010 13:22:14 +0100
parents e5ae13b8b2c2
children c1111769f595
line wrap: on
line diff
--- a/test/test_struct.m	Fri Mar 05 13:21:31 2010 +0100
+++ b/test/test_struct.m	Fri Mar 05 13:22:14 2010 +0100
@@ -184,7 +184,7 @@
 %!  [a(1:3).x] = deal ([1, 5], [3, 7], [8, 9]);
 %!  a(2:3).x(2);
 
-%!error <Index exceeds matrix dimension>
+%!error id=Octave:index-out-of-bounds
 %!  a(1).x.x = 1;
 %!  a(2).x;
 
@@ -258,7 +258,7 @@
 %!  s(3).foo = 42;
 %!  assert (s(3), struct ("foo", 42));
 
-%!error <Index exceeds matrix dimension>
+%!error id=Octave:index-out-of-bounds
 %!  s = resize(struct(),3,2);
 %!  s(3).foo = 42;
 %!  s(7);