Update to 138.1696 EAP

This commit is contained in:
Nikolay Krasko
2014-08-20 13:25:23 +04:00
parent 24b8a3abda
commit 7d36fc7449
2 changed files with 5 additions and 10 deletions
@@ -309,14 +309,9 @@ public class TypedHandlerTest extends LightCodeInsightTestCase {
}
private void doCharTypeTest(char ch, String beforeText, String afterText) {
try {
configureFromFileText("a.kt", beforeText);
EditorTestUtil.performTypingAction(getEditor(), ch);
checkResultByText(afterText);
}
catch (IOException e) {
throw UtilsPackage.rethrow(e);
}
configureFromFileText("a.kt", beforeText);
EditorTestUtil.performTypingAction(getEditor(), ch);
checkResultByText(afterText);
}
private void doLtGtTestNoAutoClose(String initText) throws Exception {