File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments