IDEA-119630 Live template broke in IDEA 13

This commit is contained in:
peter
2014-01-23 22:19:58 +01:00
parent 1216a4bf1d
commit 2ad99bc082
2 changed files with 2 additions and 2 deletions
@@ -58,7 +58,7 @@ public class ClassNameMacro extends Macro {
}
if (aClass == null) return null;
String qname = aClass.getQualifiedName();
String qname = aClass.getName();
return qname == null ? null : new TextResult(qname);
}
@@ -602,7 +602,7 @@ class Outer {
}
}'''
myFixture.type('\t')
assert myFixture.editor.document.text.contains("Outer.Inner.foo")
assert myFixture.editor.document.text.contains("\"Inner.foo")
}
public void "test do not strip type argument containing class"() {