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

Skip to content

Commit 5b33d2f

Browse files
committed
Fixed coveralls reporting issue with long packages.
1 parent 4f8caa4 commit 5b33d2f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/reporters/ut_coveralls_reporter.tpb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ create or replace type body ut_coveralls_reporter is
4242
if l_last_line_no is null then
4343
l_last_line_no := a_unit_coverage.total_lines - 1;
4444
for i in 1 .. l_last_line_no loop
45-
ut_utils.append_to_clob(l_result, '0,');
45+
ut_utils.append_to_clob(l_result, '0,'||chr(10));
4646
end loop;
4747
ut_utils.append_to_clob(l_result, '0');
4848
else
@@ -55,7 +55,7 @@ create or replace type body ut_coveralls_reporter is
5555
if line_no < l_last_line_no then
5656
l_file_part := l_file_part ||',';
5757
end if;
58-
ut_utils.append_to_clob(l_result, l_file_part);
58+
ut_utils.append_to_clob(l_result, l_file_part||chr(10));
5959
end loop;
6060
end if;
6161
ut_utils.append_to_clob(l_result, ']');

0 commit comments

Comments
 (0)