1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Fix the -testclass bug.

This commit is contained in:
Cedric Beust 2015-12-12 23:01:04 -08:00
parent b895d4c8f2
commit 23347dba77

View file

@ -24,7 +24,7 @@ public class TestNgRunner() : GenericTestRunner() {
add(testngXml.absolutePath) add(testngXml.absolutePath)
} else { } else {
add("-testclass") add("-testclass")
addAll(findTestClasses(project, classpath)) add(findTestClasses(project, classpath).joinToString(","))
} }
} }
} }