From 450e7338b68090c94ea2a5f4c6f97e848eb0db7a Mon Sep 17 00:00:00 2001 From: Kirill Likhodedov Date: Sat, 14 May 2016 18:08:09 +0300 Subject: [PATCH] git tests: log the output of git commands called in tests that failed --- plugins/git4idea/tests/git4idea/test/GitPlatformTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git4idea/tests/git4idea/test/GitPlatformTest.kt b/plugins/git4idea/tests/git4idea/test/GitPlatformTest.kt index e2ac23deb0a8..60a30e3161e6 100644 --- a/plugins/git4idea/tests/git4idea/test/GitPlatformTest.kt +++ b/plugins/git4idea/tests/git4idea/test/GitPlatformTest.kt @@ -76,7 +76,7 @@ abstract class GitPlatformTest : VcsPlatformTest() { override fun getDebugLogCategories(): Collection { return super.getDebugLogCategories().plus(listOf("#" + Executor::class.java.name, "#" + GitHandler::class.java.name, - GitHandler::class.java.name)) + "#output." + GitHandler::class.java.name)) } protected open fun createRepository(rootDir: String): GitRepository {