no more warnings

This commit is contained in:
Eugene Yokota 2019-05-23 12:42:19 -04:00
parent 8015e9f1a9
commit f94dc1a9ed
1 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,6 @@ lazy val root = (project in file("."))
val ys = IO.readLines(file("err.txt")).toVector.distinct
assert(ys.size == 1, s"ys has more than one item: $ys")
assert(ys(0) startsWith "Java HotSpot(TM) 64-Bit Server VM warning")
assert(ys.isEmpty, s"there's an stderr: $ys")
}
)