Use full test name for test started indicator

Test name is shortened because it is used as project dir,
but it is not convenient when searching for the test output in the whole
build log.
This commit is contained in:
Kirill Likhodedov
2017-03-18 11:30:18 +00:00
parent c9bfa67992
commit 677e9fd8dc
@@ -180,7 +180,7 @@ abstract class VcsPlatformTest : PlatformTestCase() {
}
private fun createTestStartedIndicator(): String {
return "Starting " + javaClass.name + "." + getTestName(false) + Math.random()
return "Starting " + javaClass.name + "." + super.getTestName(false) + Math.random()
}