Skip to content

Commit

Permalink
revert unnecessary breaking change in testkit
Browse files Browse the repository at this point in the history
  • Loading branch information
github-brice-jaglin committed Nov 4, 2020
1 parent f6bff33 commit b3688a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
8 changes: 2 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -219,12 +219,8 @@ lazy val unit = project

put(
"inputClasspath",
fullClasspath.in(testsInput, Compile).value.map(_.data)
)

put(
"semanticdbRootDirectory",
Seq(semanticdbTargetRoot.in(testsInput, Compile).value)
fullClasspath.in(testsInput, Compile).value.map(_.data) ++
semanticdbTargetRoot.in(testsInput, Compile).value
)
put(
"inputSourceDirectories",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,7 @@ object TestkitProperties {
case None => Nil
}
new TestkitProperties(
Classpath(sprops("semanticdbRootDirectory")) ++ Classpath(
sprops("inputClasspath")
),
Classpath(sprops("inputClasspath")),
Classpath(sprops("inputSourceDirectories")).entries,
Classpath(sprops("outputSourceDirectories")).entries,
sourceroot,
Expand Down

0 comments on commit b3688a8

Please sign in to comment.