File tree 3 files changed +6
-6
lines changed
shared/src/test/scala/scala/xml
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
import ScalaModulePlugin ._
2
2
3
3
scalaVersionsByJvm 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 "
7
7
Map (
8
8
6 -> List (v211 -> true ),
9
9
7 -> List (v211 -> false ),
Original file line number Diff line number Diff line change 1
1
addSbtPlugin(" org.scala-lang.modules" % " sbt-scala-module" % " 1.0.12" )
2
2
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 {
18
18
<toomuchws />
19
19
</foo >
20
20
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 })
22
22
23
23
val x2 = <foo >
24
24
<toomuchws > a b b a </toomuchws >
25
25
</foo >
26
26
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 })
28
28
}
29
29
30
30
@ Test
You can’t perform that action at this time.
0 commit comments