Skip to content

Commit 622793c

Browse files
committed
Fix pathing of generated resource file
There was a superfluous bracket in the file path. Also, we don't need a doubly-nested androidTest in the path
1 parent 6d30d10 commit 622793c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/android-junit5/src/main/kotlin/de/mannodermaus/gradle/plugins/junit5/tasks/AndroidJUnit5WriteFilters.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ open class AndroidJUnit5WriteFilters : DefaultTask() {
8888

8989
fun execute(task: AndroidJUnit5WriteFilters) {
9090
task.variant = instrumentationTestVariant
91-
task.outputFolder = File("${project.buildDir}/generated/res/android-junit5/androidTest/${instrumentationTestVariant.name})")
91+
task.outputFolder = File("${project.buildDir}/generated/res/android-junit5/${instrumentationTestVariant.name}")
9292

9393
// Access filters for this particular variant & provide them to the task, too
9494
val configuration = project.junit5ConfigurationOf(instrumentationTestVariant.testedVariant)

0 commit comments

Comments
 (0)