Skip to content

Commit 1415e6d

Browse files
committed
Fixed broken Dotty build.
1 parent 1bab950 commit 1415e6d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

project/GenScalaTestDotty.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ object GenScalaTestDotty {
162162
) ++
163163
copyDir("scalatest/src/main/scala/org/scalatest/path", "org/scalatest/path", targetDir, List.empty) ++
164164
copyDir("scalatest/src/main/scala/org/scalatest/prop", "org/scalatest/prop", targetDir, List.empty) ++
165+
copyDir("scalatest/src/main/scala/org/scalatest/propspec", "org/scalatest/propspec", targetDir, List.empty) ++
165166
copyDir("scalatest/src/main/scala/org/scalatest/time", "org/scalatest/time", targetDir, List.empty) ++
166167
copyDir("scalatest/src/main/scala/org/scalatest/tools", "org/scalatest/tools", targetDir, List.empty) ++
167168
copyDir("scalatest/src/main/scala/org/scalatest/refspec", "org/scalatest/refspec", targetDir, List.empty) ++
@@ -172,7 +173,8 @@ object GenScalaTestDotty {
172173
"NotWord.scala",
173174
"ResultOfNotWordForAny.scala"
174175
)
175-
)
176+
) ++
177+
copyDir("scalatest/src/main/scala/org/scalatest/wordspec", "org/scalatest/wordspec", targetDir, List.empty)
176178
}
177179

178180
def genTest(targetDir: File, version: String, scalaVersion: String): Seq[File] = {

0 commit comments

Comments
 (0)