Skip to content

Commit

Permalink
fix fileLayout test property
Browse files Browse the repository at this point in the history
  • Loading branch information
aSemy committed Feb 1, 2023
1 parent e53920a commit cf4e9f3
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -69,7 +69,9 @@ class DokkaMultiModuleFileLayoutTest {
subFolder.mkdirs()
subFolder.resolve("other.file").writeText("other text")

parentTask.fileLayout.set(DokkaMultiModuleFileLayout { parent, _ -> parent.project.file("target/output") })
parentTask.fileLayout.set(DokkaMultiModuleFileLayout { parent, _ ->
parent.project.provider { parent.project.layout.projectDirectory.dir("target/output") }
})
parentTask.copyChildOutputDirectory(childTask)

/* Assertions */
Expand Down

0 comments on commit cf4e9f3

Please sign in to comment.