# HG changeset patch # User John W. Eaton # Date 1424297887 18000 # Node ID 2111917d34c4f545163091c46fa02ea6ea62ad2c # Parent c913247c85a88583bd6db072d0542ed6383d9ee5 fix tests failing after changeset c913247c85a8 * variables.cc: Use a "print_usage" instead of "colon" in test for exist function. diff -r c913247c85a8 -r 2111917d34c4 libinterp/corefcn/variables.cc --- a/libinterp/corefcn/variables.cc Wed Feb 18 17:02:13 2015 -0500 +++ b/libinterp/corefcn/variables.cc Wed Feb 18 17:18:07 2015 -0500 @@ -637,10 +637,10 @@ %! assert (exist ("/dev/null", "dir"), 0); %! endif -%!assert (exist ("colon"), 2) -%!assert (exist ("colon.m"), 2) -%!assert (exist ("colon", "file"), 2) -%!assert (exist ("colon", "dir"), 0) +%!assert (exist ("print_usage"), 2) +%!assert (exist ("print_usage.m"), 2) +%!assert (exist ("print_usage", "file"), 2) +%!assert (exist ("print_usage", "dir"), 0) %!testif HAVE_CHOLMOD %! assert (exist ("chol"), 3);