junit xml had wrong package name

This commit is contained in:
Johannes Weiß 2017-11-21 19:00:19 +00:00
parent 99188f3a99
commit a4609aff3a
1 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ function plugin_junit_xml_test_suite_begin() {
junit_output_write "<testsuite name='$1' hostname='$(hostname)' "\
"timestamp='$(date -u +"%Y-%m-%dT%H:%M:%S")' tests='XXX-TESTS-XXX' "\
"failures='XXX-FAILURES-XXX' time='XXX-TIME-XXX' errors='0' id='$(date +%s)'"\
" package='HTTPServerIntegrationTests.$1'>"
" package='NIOIntegrationTests.$1'>"
}
function plugin_junit_xml_test_suite_end() {
@ -44,7 +44,7 @@ function plugin_junit_xml_test_suite_end() {
# test_name
function plugin_junit_xml_test_begin() {
junit_output_write -n " <testcase classname='HTTPServerIntegrationTests.$2' name='$1'"
junit_output_write -n " <testcase classname='NIOIntegrationTests.$2' name='$1'"
}
function plugin_junit_xml_test_skip() {