Mercurial > hg > octave-jordi
changeset 16829:f2e09c9bcb7a
system.tst: Replace removed function setstr() with char().
* test/system.tst: Replace removed function setstr() with char().
author | Rik <rik@octave.org> |
---|---|
date | Sun, 23 Jun 2013 14:54:37 -0700 |
parents | ddac88d32d6a |
children | 4c51eaffa9e4 |
files | test/system.tst |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/test/system.tst +++ b/test/system.tst @@ -231,7 +231,7 @@ %% test/octave.test/system/fnmatch-1.m %!test -%! string_fill_char = setstr (0); +%! string_fill_char = char (0); %! assert ((fnmatch ("a*a", {"aba"; "xxxba"; "aa"}) == [1; 0; 1] %! && fnmatch ({"a*a"; "b*b"}, "bob") %! && fnmatch ("x[0-5]*", {"x1"; "x6"}) == [1; 0]