diff --git a/python/build/pycharm_build.gant b/python/build/pycharm_build.gant index 2d2513ed6471..c1107837a3eb 100644 --- a/python/build/pycharm_build.gant +++ b/python/build/pycharm_build.gant @@ -343,7 +343,7 @@ def buildTarGz() { def layoutFull(String target, Set usedJars) { def openapiModules = platformApiModules() - def implementationModules = [platformImplementationModules(), "python", "python-ide", "python-py", "sass"].flatten() + def implementationModules = [platformImplementationModules(), "python", "python-ide", "sass"].flatten() layout(target) { dir("lib") { diff --git a/python/testSrc/com/jetbrains/python/refactoring/PyInlineLocalTest.java b/python/testSrc/com/jetbrains/python/refactoring/PyInlineLocalTest.java index 18edd4372ff0..6c062d2e92a0 100644 --- a/python/testSrc/com/jetbrains/python/refactoring/PyInlineLocalTest.java +++ b/python/testSrc/com/jetbrains/python/refactoring/PyInlineLocalTest.java @@ -1,5 +1,6 @@ package com.jetbrains.python.refactoring; +import com.intellij.openapi.util.Comparing; import com.intellij.psi.PsiElement; import com.jetbrains.python.fixtures.LightMarkedTestCase; import com.jetbrains.python.psi.PyReferenceExpression; @@ -30,6 +31,9 @@ public class PyInlineLocalTest extends LightMarkedTestCase { if (expectedError != null) fail("expected error: '" + expectedError + "', got none"); } catch (Exception e) { + if (!Comparing.equal(e.getMessage(), expectedError)) { + e.printStackTrace(); + } assertEquals(expectedError, e.getMessage()); return; }