Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1281d2e

Browse files
pesseSamuel Nitsche
authored andcommitted
Fixed calling ut_annotations - it's on schema ut3
1 parent aed65c5 commit 1281d2e

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

test/ut_annotations/test_annotations.pkb

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -513,9 +513,9 @@ END;';
513513
procedure test_windows_newline
514514
as
515515
l_source clob;
516-
l_parsing_result ut_annotations.typ_annotated_package;
517-
l_expected ut_annotations.typ_annotated_package;
518-
l_ann_param ut_annotations.typ_annotation_param;
516+
l_parsing_result ut3.ut_annotations.typ_annotated_package;
517+
l_expected ut3.ut_annotations.typ_annotated_package;
518+
l_ann_param ut3.ut_annotations.typ_annotation_param;
519519
begin
520520
l_source := 'PACKAGE test_tt AS
521521
-- %suite
@@ -524,12 +524,12 @@ END;';
524524
END;';
525525

526526
--Act
527-
l_parsing_result := ut_annotations.parse_package_annotations(l_source);
527+
l_parsing_result := ut3.ut_annotations.parse_package_annotations(l_source);
528528

529529
--Assert
530530
l_ann_param := null;
531531
l_ann_param.val := 'Name of suite';
532-
l_expected.package_annotations('suite').params := cast( null as ut_annotations.tt_annotation_params);
532+
l_expected.package_annotations('suite').params := cast( null as ut3.ut_annotations.tt_annotation_params);
533533
l_expected.package_annotations('displayname').params(1) := l_ann_param;
534534

535535
l_ann_param := null;
@@ -542,9 +542,9 @@ END;';
542542
procedure test_annot_very_long_name
543543
as
544544
l_source clob;
545-
l_parsing_result ut_annotations.typ_annotated_package;
546-
l_expected ut_annotations.typ_annotated_package;
547-
l_ann_param ut_annotations.typ_annotation_param;
545+
l_parsing_result ut3.ut_annotations.typ_annotated_package;
546+
l_expected ut3.ut_annotations.typ_annotated_package;
547+
l_ann_param ut3.ut_annotations.typ_annotation_param;
548548
begin
549549
l_source := 'PACKAGE test_tt AS
550550
-- %suite
@@ -556,20 +556,20 @@ END;';
556556
END;';
557557

558558
--Act
559-
l_parsing_result := ut_annotations.parse_package_annotations(l_source);
559+
l_parsing_result := ut3.ut_annotations.parse_package_annotations(l_source);
560560

561561
--Assert
562562
l_ann_param := null;
563563
l_ann_param.val := 'Name of suite';
564-
l_expected.package_annotations('suite').params := cast( null as ut_annotations.tt_annotation_params);
564+
l_expected.package_annotations('suite').params := cast( null as ut3.ut_annotations.tt_annotation_params);
565565
l_expected.package_annotations('displayname').params(1) := l_ann_param;
566566

567567
l_ann_param := null;
568568
l_ann_param.val := 'all.globaltests';
569569
l_expected.package_annotations('suitepath').params(1) := l_ann_param;
570570

571571
l_expected.procedure_annotations(1).name := 'very_long_procedure_name_valid_for_oracle_12_so_utplsql_should_allow_it_definitely_well_still_not_reached_128_but_wait_we_ditit';
572-
l_expected.procedure_annotations(1).annotations('test').params := cast( null as ut_annotations.tt_annotation_params);
572+
l_expected.procedure_annotations(1).annotations('test').params := cast( null as ut3.ut_annotations.tt_annotation_params);
573573

574574
check_annotation_parsing(l_expected, l_parsing_result);
575575
end;

0 commit comments

Comments
 (0)