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

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed coveralls reporting issue with long packages.
  • Loading branch information
jgebal committed Jun 10, 2018
commit 5b33d2f4edbe7f2b449cbd375b776bdb9020f161
4 changes: 2 additions & 2 deletions source/reporters/ut_coveralls_reporter.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ create or replace type body ut_coveralls_reporter is
if l_last_line_no is null then
l_last_line_no := a_unit_coverage.total_lines - 1;
for i in 1 .. l_last_line_no loop
ut_utils.append_to_clob(l_result, '0,');
ut_utils.append_to_clob(l_result, '0,'||chr(10));
end loop;
ut_utils.append_to_clob(l_result, '0');
else
Expand All @@ -55,7 +55,7 @@ create or replace type body ut_coveralls_reporter is
if line_no < l_last_line_no then
l_file_part := l_file_part ||',';
end if;
ut_utils.append_to_clob(l_result, l_file_part);
ut_utils.append_to_clob(l_result, l_file_part||chr(10));
end loop;
end if;
ut_utils.append_to_clob(l_result, ']');
Expand Down