@@ -23,7 +23,7 @@ create or replace package body ut_suite_builder is
2323
2424 gc_suite constant t_annotation_name := 'suite';
2525 gc_suitepath constant t_annotation_name := 'suitepath';
26- gc_tag constant t_annotation_name := 'tags';
26+ gc_tags constant t_annotation_name := 'tags';
2727 gc_test constant t_annotation_name := ut_utils.gc_test_execute;
2828 gc_disabled constant t_annotation_name := 'disabled';
2929 gc_displayname constant t_annotation_name := 'displayname';
@@ -44,7 +44,7 @@ create or replace package body ut_suite_builder is
4444 := tt_annotations(
4545 gc_suite,
4646 gc_suitepath,
47- gc_tag ,
47+ gc_tags ,
4848 gc_test,
4949 gc_disabled,
5050 gc_displayname,
@@ -513,8 +513,8 @@ create or replace package body ut_suite_builder is
513513 set_seq_no(l_test.after_test_list);
514514 end if;
515515
516- if l_proc_annotations.exists( gc_tag ) then
517- add_tags_to_suite_item(a_suite, l_proc_annotations( gc_tag ), l_test.tags, a_procedure_name);
516+ if l_proc_annotations.exists( gc_tags ) then
517+ add_tags_to_suite_item(a_suite, l_proc_annotations( gc_tags ), l_test.tags, a_procedure_name);
518518 end if;
519519
520520 if l_proc_annotations.exists( gc_throws) then
@@ -667,8 +667,8 @@ create or replace package body ut_suite_builder is
667667 l_after_each_list := add_executables( a_suite.object_owner, a_suite.object_name, a_annotations.by_name(gc_aftereach), gc_aftereach );
668668 end if;
669669
670- if a_annotations.by_name.exists(gc_tag ) then
671- add_tags_to_suite_item(a_suite, a_annotations.by_name(gc_tag ),a_suite.tags);
670+ if a_annotations.by_name.exists(gc_tags ) then
671+ add_tags_to_suite_item(a_suite, a_annotations.by_name(gc_tags ),a_suite.tags);
672672 end if;
673673 a_suite.disabled_flag := ut_utils.boolean_to_int(a_annotations.by_name.exists(gc_disabled));
674674
0 commit comments