Test file names to lower case.

This commit is contained in:
Evgeny Gerashchenko
2012-02-13 20:59:54 +04:00
parent 468d31b5e8
commit 404921eb37
3 changed files with 2 additions and 2 deletions
@@ -38,7 +38,7 @@ public class LiveTemplatesTest extends LightCodeInsightFixtureTestCase {
}
private void start() {
myFixture.configureByFile(getTestName(false) + ".kt");
myFixture.configureByFile(getTestName(true) + ".kt");
myFixture.type(getTestName(true));
doAction("ExpandLiveTemplateByTab");
@@ -46,7 +46,7 @@ public class LiveTemplatesTest extends LightCodeInsightFixtureTestCase {
private void checkAfter() {
assertNull(getTemplateState());
myFixture.checkResultByFile(getTestName(false) + ".exp.kt");
myFixture.checkResultByFile(getTestName(true) + ".exp.kt");
}
private void type(String s) {