Skip to content

Commit e6353f0

Browse files
committed
Fix JUnit reports location
Issue: SPR-14569
1 parent c64cdcc commit e6353f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ configure(allprojects) { project ->
160160
// classes with the "$" pattern; otherwise, using -Dtest.single=MyTests to
161161
// run MyTests by itself will fail if MyTests contains any inner classes.
162162
exclude(["**/Abstract*.class", '**/*$*'])
163-
reports.junitXml.destination = file("$buildDir/test-reports")
163+
reports.junitXml.destination = file("$buildDir/test-results")
164164
}
165165

166166
repositories {

0 commit comments

Comments
 (0)