File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -82,23 +82,23 @@ create or replace type body ut_teamcity_reporter is
8282
8383 if a_test.result = ut_utils.tr_error then
8484 if a_test.before_each.error_backtrace is not null then
85- l_std_err_msg := l_std_err_msg || 'Before each:' || chr(10) || a_test.before_each.error_backtrace || chr(10);
85+ l_std_err_msg := l_std_err_msg || 'Before each exception :' || chr(10) || a_test.before_each.error_backtrace || chr(10);
8686 end if;
8787
8888 if a_test.before_test.error_backtrace is not null then
89- l_std_err_msg := l_std_err_msg || 'Before test:' || chr(10) || a_test.before_test.error_backtrace || chr(10);
89+ l_std_err_msg := l_std_err_msg || 'Before test exception :' || chr(10) || a_test.before_test.error_backtrace || chr(10);
9090 end if;
9191
9292 if a_test.item.error_backtrace is not null then
93- l_std_err_msg := l_std_err_msg || 'Test:' || chr(10) || a_test.item.error_backtrace || chr(10);
93+ l_std_err_msg := l_std_err_msg || 'Test exception :' || chr(10) || a_test.item.error_backtrace || chr(10);
9494 end if;
9595
9696 if a_test.after_test.error_backtrace is not null then
97- l_std_err_msg := l_std_err_msg || 'After test:' || chr(10) || a_test.after_test.error_backtrace || chr(10);
97+ l_std_err_msg := l_std_err_msg || 'After test exception :' || chr(10) || a_test.after_test.error_backtrace || chr(10);
9898 end if;
9999
100100 if a_test.after_each.error_backtrace is not null then
101- l_std_err_msg := l_std_err_msg || 'After each:' || chr(10) || a_test.after_each.error_backtrace || chr(10);
101+ l_std_err_msg := l_std_err_msg || 'After each exception :' || chr(10) || a_test.after_each.error_backtrace || chr(10);
102102 end if;
103103
104104 self.print_text(ut_teamcity_reporter_helper.test_std_err(a_test_name => l_test_full_name
You can’t perform that action at this time.
0 commit comments