Skip to content
Prev Previous commit
Next Next commit
Refactoring: Add clarifying comment
  • Loading branch information
pesse committed Dec 19, 2019
commit a4d92dea60e98246ec21db6bbc0dfa9a3fa46971
1 change: 1 addition & 0 deletions source/core/ut_suite_builder.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -917,6 +917,7 @@ create or replace package body ut_suite_builder is
exit when not a_annotations.by_name.exists( gc_context);

l_context_pos := a_annotations.by_name( gc_context).next( l_context_pos);
-- don't go on when the next context is outside the parent's context boundaries
if ( a_parent_end_context_pos is not null and a_parent_end_context_pos <= l_context_pos ) then
Comment thread
pesse marked this conversation as resolved.
Outdated
l_context_pos := null;
end if;
Expand Down