Skip to content
This repository has been archived by the owner on Aug 1, 2019. It is now read-only.

Commit

Permalink
publishers: correct XML element for boosttest xunit
Browse files Browse the repository at this point in the history
The xUnit publisher (introduced by 2736e14) add a copy paste issue that
caused the 'boostest' type to use an XML element named
AUnitJunitHudsonTestType instead of BoostTestJunitHudsonTestType.

Closes-Bug: 1239121
Change-Id: I612075f5327025136d161dd60653a4f8edabb772
  • Loading branch information
Mayeul d'Avezac authored and hashar committed Oct 23, 2013
1 parent 72d32db commit d23b0f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jenkins_jobs/modules/publishers.py
Expand Up @@ -622,7 +622,7 @@ def xunit(parser, xml_parent, data):
# Map our internal types to the XML element names used by Jenkins plugin
types_to_plugin_types = {
'aunit': 'AUnitJunitHudsonTestType',
'boosttest': 'AUnitJunitHudsonTestType',
'boosttest': 'BoostTestJunitHudsonTestType',
'checktype': 'CheckType',
'cpptest': 'CppTestJunitHudsonTestType',
'cppunit': 'CppUnitJunitHudsonTestType',
Expand Down

0 comments on commit d23b0f3

Please sign in to comment.