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

Skip to content

Commit 23c5ed2

Browse files
committed
Fixed names after merge from develop.
1 parent 5cfb8f5 commit 23c5ed2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

source/reporters/ut_tfs_junit_reporter.tpb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,14 @@ create or replace type body ut_tfs_junit_reporter is
6767
e.g., an unchecked throwable; or a problem with the implementation of the test.
6868
*/
6969

70-
if a_test.result = ut_utils.tr_error then
70+
if a_test.result = ut_utils.gc_error then
7171
self.print_text('<error type="error" message="Error while executing '||a_test.name||'">');
7272
self.print_text('<![CDATA[');
7373
self.print_clob(ut_utils.table_to_clob(a_test.get_error_stack_traces()));
7474
self.print_text(']]>');
7575
self.print_text('</error>');
7676
-- Do not count error as failure
77-
elsif a_test.result = ut_utils.tr_failure then
77+
elsif a_test.result = ut_utils.gc_failure then
7878
self.print_text('<failure type="failure" message="Test '||a_test.name||' failed">');
7979
self.print_text('<![CDATA[');
8080
for i in 1 .. a_test.failed_expectations.count loop

0 commit comments

Comments
 (0)