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

Skip to content

Commit c5f07a7

Browse files
committed
Larger variables to prevent failure during reporting
1 parent 933f41a commit c5f07a7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/reporters/ut_tap_reporter.tpb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)