Skip to content
This repository was archived by the owner on Sep 8, 2022. It is now read-only.

add jdk11 test #113

Merged
merged 1 commit into from
Oct 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ script: admin/build.sh

jdk:
- oraclejdk8
- openjdk11

notifications:
email:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name := "scala-partest"
version := "1.1.4-SNAPSHOT"

scalaVersionsByJvm in ThisBuild := {
val vs = List("2.12.6")
val vs = List("2.12.7")

Map(
8 -> vs.map(_ -> true),
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/scala/tools/partest/package.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ package object partest {
private val GroupPattern = """.*_(\d+)""".r

implicit class `special string ops`(private val s: String) extends AnyVal {
def linesIfNonEmpty: Iterator[String] = if (!s.isEmpty) s.lines else Iterator.empty
def linesIfNonEmpty: Iterator[String] = if (!s.isEmpty) s.linesIterator else Iterator.empty
}

implicit class FileOps(val f: File) {
Expand Down