Skip to content

Commit 1096a28

Browse files
committed
Address review feedback
1 parent a0f7bba commit 1096a28

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

compiler/src/dotty/tools/dotc/sbt/ExtractDependencies.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Names._, NameOps._, StdNames._
88

99
import scala.collection.{Set, mutable}
1010

11-
import dotty.tools.io.{AbstractFile, Path, ZipArchive}
11+
import dotty.tools.io.{AbstractFile, Path, ZipArchive, PlainFile}
1212
import java.io.File
1313

1414
import java.util.{Arrays, Comparator}
@@ -101,7 +101,7 @@ class ExtractDependencies extends Phase {
101101
val classSegments = Path(ze.path).segments
102102
binaryDependency(zipFile, className(classSegments))
103103
}
104-
case pf: dotty.tools.io.PlainFile =>
104+
case pf: PlainFile =>
105105
val packages = dep.ownersIterator
106106
.filter(x => x.is(PackageClass) && !x.isEffectiveRoot).length
107107
// We can recover the fully qualified name of a classfile from

project/Build.scala

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,8 @@ object Build {
621621
settings(
622622
publishArtifact := false,
623623
parallelExecution in Test := false,
624+
// Increase verbosity of test output, started and passed tests are
625+
// logged with:
624626
testOptions in Test += Tests.Argument(TestFrameworks.JUnit, "-a", "-v"),
625627
libraryDependencies +=
626628
"com.novocode" % "junit-interface" % "0.11" % "test"

0 commit comments

Comments
 (0)