diff --git a/buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy b/buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy index d366cf78cd9..5c967f26e0e 100644 --- a/buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy +++ b/buildSrc/src/main/groovy/org/jetbrains/kotlin/Reporter.groovy @@ -26,7 +26,7 @@ class Reporter extends DefaultTask { @TaskAction public void report() { def stats = new RunExternalTestGroup.Statistics() - def obj = new JsonSlurper().parse(new File(reportHome, "results.json")) + def obj = new JsonSlurper().parse(new File(reportHome, "external/results.json")) stats.total = obj.statistics.total stats.passed = obj.statistics.passed stats.failed = obj.statistics.failed