changeset 17624:b92242ad316f

parser.tst: Remove comments about bug #33304 which has been fixed. * test/parser.tst: Remove comments about bug #33304 which has been fixed.
author Rik <rik@octave.org>
date Thu, 10 Oct 2013 14:52:47 -0700
parents 7b305b36b87e
children bd1dd30ed202
files test/parser.tst
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/test/parser.tst	Thu Oct 10 13:54:12 2013 -0400
+++ b/test/parser.tst	Thu Oct 10 14:52:47 2013 -0700
@@ -208,8 +208,6 @@
 ## Level 12 (postfix increment and decrement)
 ## No tests possible since a++-- is not valid
 ## Level 11 (transpose and exponentiation)
-## Note: Exponentiation should be left-to-right, but Octave does right-to-left.
-##       See bug #33304.
 %!test
 %! assert (2^3**2, 64);
 %! assert ([2 3].^2.', [4;9]);
@@ -220,9 +218,6 @@
 %! assert (2^+4^3, 16^3);
 %! assert (2^~0^2, 4);
 
-## Note: Exponentiation should be left-to-right, but Octave does right-to-left.
-##       See bug #33304.
-
 ## Level 10 (unary plus/minus, prefix increment/decrement, not)
 %!test
 %! assert (+-+1, -1);
@@ -287,3 +282,4 @@
 %!test
 %! xyz(1) = 1; xyz /= 1;
 %! assert (xyz, 1);
+