Skip to content

Commit 44861f0

Browse files
authored
Merge pull request #186 from ashawley/scala-2.13.0-M3
Increment scala to 2.11.12, 2.12.4 and 2.13.0-M3
2 parents a41c39c + ac9f769 commit 44861f0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.sbt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import ScalaModulePlugin._
22

33
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"
77
Map(
88
6 -> List(v211 -> true),
99
7 -> List(v211 -> false),

project/plugins.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
addSbtPlugin("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")

shared/src/test/scala/scala/xml/UtilityTest.scala

+2-2
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)