Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Cleanup
  • Loading branch information
jgebal committed Oct 23, 2019
commit 8f0b267086cc84feef0156a97d9f07626b73b1d1
4 changes: 2 additions & 2 deletions source/core/ut_suite_builder.pkb
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ create or replace package body ut_suite_builder is
end loop;
end;

procedure warning_on_floating_endcontext(
procedure warning_on_extra_endcontext(
a_suite in out nocopy ut_suite,
a_package_ann_index tt_annotations_by_name
) is
Expand Down Expand Up @@ -915,7 +915,7 @@ create or replace package body ut_suite_builder is
add_tests_to_items( l_suite, l_annotations, a_suite_items );

--by this time all contexts were consumed and l_annotations should not have any context/endcontext annotation in it.
warning_on_floating_endcontext( l_suite, l_annotations.by_name );
warning_on_extra_endcontext( l_suite, l_annotations.by_name );

a_suite_items.extend;
a_suite_items( a_suite_items.last) := l_suite;
Expand Down