IDEA-148666 Name of enclosing class is not shown for anonymous classes in 'Choose implementation' popup

This commit is contained in:
peter
2015-12-01 12:35:08 +01:00
parent 2913517740
commit 29c3d7d756
2 changed files with 2 additions and 2 deletions
@@ -177,7 +177,7 @@ public class ImplementationsViewTest extends LightCodeInsightFixtureTestCase {
all.add(psiClass);
all.addAll(classes);
final ImplementationViewComponent component = new ImplementationViewComponent(all.toArray(new PsiElement[all.size()]), 0);
assertContent(component, new String[]{"a.java (AFoo)", "a.java (Anonymous in IMPL)"});
assertContent(component, new String[]{"a.java (AFoo)", "a.java (Anonymous in IMPL in AFoo)"});
}
public void testInterfaceMethodOfFunctionalInterface() {