File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ create or replace type body ut_tap_reporter is
1717
1818 overriding member procedure after_calling_test(self in out nocopy ut_tap_reporter, a_test ut_test) as
1919 l_message varchar2(4000);
20- l_test_name varchar2(300 ) := coalesce(a_test.description, a_test.name);
20+ l_test_name varchar2(4000 ) := coalesce(a_test.description, a_test.name);
2121
2222 procedure print_failed_expectation(a_test ut_test) is
2323 l_lines ut_varchar2_list;
@@ -74,7 +74,7 @@ create or replace type body ut_tap_reporter is
7474 end after_calling_before_all;
7575
7676 overriding member procedure after_calling_suite(self in out nocopy ut_tap_reporter, a_suite ut_logical_suite) as
77- l_suite_name varchar2(300 ) := coalesce(a_suite.description, a_suite.name);
77+ l_suite_name varchar2(4000 ) := coalesce(a_suite.description, a_suite.name);
7878 begin
7979 lvl := lvl - 2;
8080 if lvl = 0 then
You can’t perform that action at this time.
0 commit comments