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

Skip to content

Commit a477d68

Browse files
committed
Central use of comment procedure
1 parent 33865dd commit a477d68

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
@@ -82,14 +82,14 @@ create or replace type body ut_tap_reporter is
8282
overriding member procedure after_calling_before_all(self in out nocopy ut_tap_reporter, a_executable in ut_executable) is
8383
begin
8484
if a_executable.serveroutput is not null and a_executable.serveroutput != empty_clob() then
85-
self.print_clob('# ' || a_executable.serveroutput);
85+
self.print_comment(a_executable.serveroutput);
8686
end if;
8787
end after_calling_before_all;
8888

8989
overriding member procedure after_calling_after_all(self in out nocopy ut_tap_reporter, a_executable in ut_executable) is
9090
begin
9191
if a_executable.serveroutput is not null and a_executable.serveroutput != empty_clob() then
92-
self.print_clob('# ' || a_executable.serveroutput);
92+
self.print_comment(a_executable.serveroutput);
9393
end if;
9494
end after_calling_after_all;
9595

0 commit comments

Comments
 (0)