Skip to content

Commit f100889

Browse files
Lorenz MendeLorenz Mende
authored andcommitted
[scalatest#1767] correcting text content of property elements of jUnit result files
* property elements are now non-text elements instead of empty-text
1 parent 9d8061c commit f100889

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scalatest/src/main/scala/org/scalatest/tools/JUnitXmlReporter.scala

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,8 +459,7 @@ private[scalatest] class JUnitXmlReporter(directory: String) extends Reporter {
459459
<properties> {
460460
for (name <- propertyNames(sysprops))
461461
yield
462-
<property name={ name } value = { sysprops.getProperty(name) }>
463-
</property>
462+
<property name={ name } value = { sysprops.getProperty(name) }/>
464463
}
465464
</properties>
466465
}

0 commit comments

Comments
 (0)