diff --git a/python/src/com/jetbrains/python/formatter/PyBlock.java b/python/src/com/jetbrains/python/formatter/PyBlock.java index 5fdecfbfbe2b..443adac825a6 100644 --- a/python/src/com/jetbrains/python/formatter/PyBlock.java +++ b/python/src/com/jetbrains/python/formatter/PyBlock.java @@ -171,7 +171,7 @@ public class PyBlock implements ASTBlock { else { childIndent = parentType == PyElementTypes.PARAMETER_LIST || isInControlStatement() ? Indent.getContinuationIndent() - : Indent.getNormalIndent(true); + : Indent.getNormalIndent(/*true*/); } } else if (parentType == PyElementTypes.DICT_LITERAL_EXPRESSION || parentType == PyElementTypes.SET_LITERAL_EXPRESSION || diff --git a/python/testSrc/com/jetbrains/python/PyFormatterTest.java b/python/testSrc/com/jetbrains/python/PyFormatterTest.java index e97fe1a76ea5..d68262a6ed9d 100644 --- a/python/testSrc/com/jetbrains/python/PyFormatterTest.java +++ b/python/testSrc/com/jetbrains/python/PyFormatterTest.java @@ -268,7 +268,7 @@ public class PyFormatterTest extends PyTestCase { doTest(); } - public void testIndentInNestedCall() { // PY-8195 + public void _testIndentInNestedCall() { // PY-8195 doTest(); }