Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion source/reporters/ut_tap_reporter.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ create or replace type body ut_tap_reporter is

member procedure print_comment(self in out nocopy ut_tap_reporter, a_comment clob) as
begin
self.print_clob(regexp_replace(a_comment, '^', '# ', 1, 0, 'm'));
self.print_clob(regexp_replace(a_comment, '^(.+)', '# \1', 1, 0, 'm'));
end print_comment;

member function escape_special_chars(self in out nocopy ut_tap_reporter, a_string_to_escape clob) return clob as
Expand Down
Loading