Mercurial > hg > octave-jordi
changeset 14352:3002986df93c
Fix typo in %!test in changeset 12c70d00c04e
* conv.m: Add missing ')' to %!test code
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Thu, 09 Feb 2012 12:39:55 -0800 |
parents | e257d7363133 |
children | 937035390ec0 |
files | scripts/polynomial/conv.m |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/polynomial/conv.m +++ b/scripts/polynomial/conv.m @@ -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