File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
shared/src/test/scala/scala/xml Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11import ScalaModulePlugin ._
22
33scalaVersionsByJvm in ThisBuild := {
4- val v211 = " 2.11.11 "
5- val v212 = " 2.12.3 "
6- val v213 = " 2.13.0-M2 "
4+ val v211 = " 2.11.12 "
5+ val v212 = " 2.12.4 "
6+ val v213 = " 2.13.0-M3 "
77 Map (
88 6 -> List (v211 -> true ),
99 7 -> List (v211 -> false ),
Original file line number Diff line number Diff line change 11addSbtPlugin(" org.scala-lang.modules" % " sbt-scala-module" % " 1.0.12" )
22
3- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 0.6.19 " )
3+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 0.6.22 " )
Original file line number Diff line number Diff line change @@ -18,13 +18,13 @@ class UtilityTest {
1818 <toomuchws />
1919 </foo >
2020 val y = xml.Utility .trim(x)
21- assertEquals( 1 , y match { case <foo ><toomuchws /></foo > => 1 })
21+ assertTrue( y match { case <foo ><toomuchws /></foo > => true })
2222
2323 val x2 = <foo >
2424 <toomuchws > a b b a </toomuchws >
2525 </foo >
2626 val y2 = xml.Utility .trim(x2)
27- assertEquals( 2 , y2 match { case <foo ><toomuchws >a b b a</toomuchws ></foo > => 2 })
27+ assertTrue( y2 match { case <foo ><toomuchws >a b b a</toomuchws ></foo > => true })
2828 }
2929
3030 @ Test
You can’t perform that action at this time.
0 commit comments