From 7bebe26be67f2e954f4cbf282ee1115e03568f43 Mon Sep 17 00:00:00 2001 From: "Denis.Zhdanov" Date: Wed, 13 Feb 2013 12:50:49 +0400 Subject: [PATCH] IDEA-99572 Vertical line block match disappear view line in java code Explicitly add parenthesis to method call as particular groovyc version used at teamcity fails to compile it ('database tests' configuration) --- .../codeInsight/daemon/indentGuide/IndentGuideTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/java-tests/testSrc/com/intellij/codeInsight/daemon/indentGuide/IndentGuideTest.groovy b/java/java-tests/testSrc/com/intellij/codeInsight/daemon/indentGuide/IndentGuideTest.groovy index 6383205b6b8a..3fe81493e751 100644 --- a/java/java-tests/testSrc/com/intellij/codeInsight/daemon/indentGuide/IndentGuideTest.groovy +++ b/java/java-tests/testSrc/com/intellij/codeInsight/daemon/indentGuide/IndentGuideTest.groovy @@ -137,7 +137,7 @@ class Test { } private void doTest(@NotNull String text) { - IndentGuideTestData testData = parse text + IndentGuideTestData testData = parse(text) myFixture.configureByText("${getTestName(false)}.java", testData.documentText) CodeInsightTestFixtureImpl.instantiateAndRun(myFixture.file, myFixture.editor, ArrayUtilRt.EMPTY_INT_ARRAY, false) IndentsModelImpl model = myFixture.editor.indentsModel as IndentsModelImpl