From 7d3771ca79cf78c85efc0db86e7f7dd61d465977 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 17 Jun 2010 15:25:26 +0400 Subject: [PATCH] delete python-py again; cleanup --- python/build/pycharm_build.gant | 2 +- .../com/jetbrains/python/refactoring/PyInlineLocalTest.java | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) 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; }