changeset 30956:0d06084693dd stable

test: Fix failing BIST test due to changes in cset c09fdabaa5b6. * bp-table.cc: Change line numbers in BIST test for 'ls' which changed when documentation was updated in ls.m
author Rik <rik@octave.org>
date Thu, 21 Apr 2022 13:46:49 -0700
parents 0acf9363da34
children abca9eac1ec9 d585976cb30a
files libinterp/parse-tree/bp-table.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/bp-table.cc	Thu Apr 21 12:03:41 2022 -0700
+++ b/libinterp/parse-tree/bp-table.cc	Thu Apr 21 13:46:49 2022 -0700
@@ -539,13 +539,13 @@
 %! dbstop help;
 %! dbstop in ls;
 %! dbstop help at 104;
-%! dbstop in ls 121;     ## 121 is a comment; code line is at 124
+%! dbstop in ls 123;     ## 123 is a comment; code line is at 126
 %! dbstop help 204 if a==5;
 %! dbstop if error Octave:undefined-function;
 %! s = dbstatus;
 %! dbclear all;
 %! assert ({s.bkpt(:).name}, {"help", "help", "help>do_contents", "ls", "ls"});
-%! assert ([s.bkpt(:).line], [55, 105, 207, 63, 124]);
+%! assert ([s.bkpt(:).line], [55, 105, 207, 63, 126]);
 %! assert (s.errs, {"Octave:undefined-function"});
 */