mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
delete python-py again; cleanup
This commit is contained in:
@@ -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") {
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user