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 a typo.
  • Loading branch information
jgebal committed Mar 14, 2017
commit 44e124de3e5573a64c5c8f848fefec8089064316
2 changes: 1 addition & 1 deletion source/reporters/ut_xunit_reporter.tpb
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ create or replace type body ut_xunit_reporter is
self.print_text('<testsuite tests="' || l_tests_count || '"' || ' id="' || a_suite_id || '"' || ' package="' ||
a_suite.path || '" ' || self.get_common_item_attributes(a_suite) || '>');
if a_suite is of(ut_suite) then
l_suite := treat(l_suite as ut_suite);
l_suite := treat(a_suite as ut_suite);

if l_suite.before_all.serveroutput is not null or l_suite.after_all.serveroutput is not null then
self.print_text('<system-out>');
Expand Down