# HG changeset patch # User Rik # Date 1328819995 28800 # Node ID 3002986df93c93c7cf347b958e6b5673cb322e10 # Parent e257d7363133f0443b8927fabaf0a9094f26486d Fix typo in %!test in changeset 12c70d00c04e * conv.m: Add missing ')' to %!test code diff -r e257d7363133 -r 3002986df93c scripts/polynomial/conv.m --- a/scripts/polynomial/conv.m Thu Feb 09 13:39:34 2012 -0500 +++ b/scripts/polynomial/conv.m Thu Feb 09 12:39:55 2012 -0800 @@ -134,7 +134,7 @@ %!assert (conv (b,a,"same"), [28, 34, 40]); %!assert (conv (a,b,"valid"), [10, 16, 22, 28, 34, 40, 46, 52]); -%!assert (conv (b,a,"valid"), zeros (1,0); +%!assert (conv (b,a,"valid"), zeros (1,0)); %% Test input validation