diff scripts/general/fliplr.m @ 7940:1bfb88e78027

fix tests
author John W. Eaton <jwe@octave.org>
date Thu, 17 Jul 2008 10:55:50 -0400
parents 83a8781b529d
children e07e93c04080
line wrap: on
line diff
--- a/scripts/general/fliplr.m
+++ b/scripts/general/fliplr.m
@@ -56,7 +56,7 @@
 %! && fliplr ([1, 2; 3, 4; 5, 6]) == [2, 1; 4, 3; 6, 5]
 %! && fliplr ([1, 2, 3; 4, 5, 6]) == [3, 2, 1; 6, 5, 4]));
 
-%!error <usage.*fliplr> fliplr();
+%!error fliplr();
 
 %!error fliplr (1, 2);