Skip to content

Commit d55f91f

Browse files
committed
fix testing code for 2.13
1 parent 09e52f4 commit d55f91f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ lazy val scala211 = "2.11.12"
1010
lazy val scala213 = "2.13.1"
1111

1212
crossScalaVersions := Seq(scala212, scala211, scala213)
13-
scalaVersion := scala212
13+
scalaVersion := scala213
1414

1515
javacOptions ++=
1616
"-source" :: "1.8" ::

src/test/scala/scorex/crypto/authds/avltree/batch/BatchTesting.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class LegacyProver(tree: AVLTree[_]) {
3232
case Failure(e) => throw BatchFailure(e, m)
3333
}
3434
}
35-
BatchSuccessSimple(aggregatedProofs)
35+
BatchSuccessSimple(aggregatedProofs.toSeq)
3636
} match {
3737
case Success(p) => p
3838
case Failure(e: BatchFailure) => e

0 commit comments

Comments
 (0)