Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e4181d commit 052373fCopy full SHA for 052373f
1 file changed
source/reporters/ut_teamcity_reporter.tpb
@@ -89,8 +89,8 @@ create or replace type body ut_teamcity_reporter is
89
,a_out => trim(l_std_err_msg)));
90
self.print_text(ut_teamcity_reporter_helper.test_failed(a_test_name => l_test_full_name
91
,a_msg => 'Error occured'
92
- ,a_details => trim(l_std_err_msg) || a_test.results(1)
93
- .message));
+ ,a_details => trim(l_std_err_msg) || case when a_test.results is not null and a_test.results.count>0 then a_test.results(1)
+ .message end));
94
elsif a_test.results is not null and a_test.results.count > 0 then
95
for i in 1 .. a_test.results.count loop
96
0 commit comments