summaryrefslogtreecommitdiff
path: root/test/files/run/t7074.scala
Commit message (Collapse)AuthorAgeFilesLines
* Prepare removal of scala-xml, scala-parser-combinatorsAdriaan Moors2013-08-271-15/+0
| | | | | | | | | Every test deleted here has found its way to the respective repositories of scala-xml and scala-parser-combinators, where they will continue to be tested with partest. The modified tests became independent of these modules, as they should've been from the start.
* SI-7074 Fix xml attribute sortingSzabolcs Berecz2013-02-241-0/+15
Sorting the attributes of an xml element could drop some of the attributes. It was caused by the incorrect use of MetaData#copy() to concatenate "smaller" with the rest of the attributes. The MetaData#copy() method is similar to the following hypothetical method on a List: def copy(other: List): List = head :: other The fix prepends all elements of "smaller" to the rest of the attributes in the proper order.