mirror of https://github.com/sbt/sbt.git
commit
5aed0bb06d
|
|
@ -19,7 +19,7 @@ class ErrorSpec extends AbstractSpec {
|
||||||
"Parser " should {
|
"Parser " should {
|
||||||
|
|
||||||
"contains file name and line number" in {
|
"contains file name and line number" in {
|
||||||
val rootPath = getClass.getClassLoader.getResource("").getPath + "/error-format/"
|
val rootPath = getClass.getResource("/error-format/").getPath
|
||||||
println(s"Reading files from: $rootPath")
|
println(s"Reading files from: $rootPath")
|
||||||
foreach(new File(rootPath).listFiles) { file =>
|
foreach(new File(rootPath).listFiles) { file =>
|
||||||
print(s"Processing ${file.getName}: ")
|
print(s"Processing ${file.getName}: ")
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ class NewFormatSpec extends AbstractSpec {
|
||||||
|
|
||||||
"New Format " should {
|
"New Format " should {
|
||||||
"Handle lines " in {
|
"Handle lines " in {
|
||||||
val rootPath = getClass.getClassLoader.getResource("").getPath + "/new-format/"
|
val rootPath = getClass.getResource("/new-format").getPath
|
||||||
println(s"Reading files from: $rootPath")
|
println(s"Reading files from: $rootPath")
|
||||||
val allFiles = new File(rootPath).listFiles.toList
|
val allFiles = new File(rootPath).listFiles.toList
|
||||||
foreach(allFiles) { path =>
|
foreach(allFiles) { path =>
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import scala.io.Source
|
||||||
import SessionSettings.SessionSetting
|
import SessionSettings.SessionSetting
|
||||||
|
|
||||||
abstract class AbstractSessionSettingsSpec(folder: String) extends AbstractSpec {
|
abstract class AbstractSessionSettingsSpec(folder: String) extends AbstractSpec {
|
||||||
protected val rootPath = getClass.getClassLoader.getResource("").getPath + folder
|
protected val rootPath = getClass.getResource("/" + folder).getPath
|
||||||
println(s"Reading files from: $rootPath")
|
println(s"Reading files from: $rootPath")
|
||||||
protected val rootDir = new File(rootPath)
|
protected val rootDir = new File(rootPath)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
sbt.version=1.3.4
|
sbt.version=1.3.6
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue