Skip to content

Commit

Permalink
fix for scala 2.12 jenkins failure
Browse files Browse the repository at this point in the history
  • Loading branch information
heuermh committed May 31, 2019
1 parent 9e661ac commit bffd771
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1024,7 +1024,7 @@ class ADAMContextSuite extends ADAMFunSuite {
sparkTest("read a fasta file with long sequences as slices") {
val inputPath = testFile("chr20.250k.fa.gz")
val slices = sc.loadFastaDna(inputPath, 10000L)
slices.transform(rdd => rdd.sortBy(_.getIndex.toInt))
slices.transform((rdd: RDD[Slice]) => rdd.sortBy(_.getIndex.toInt))
assert(slices.rdd.count() === 26)

val first = slices.rdd.first()
Expand Down

0 comments on commit bffd771

Please sign in to comment.