Fixed 'lowercaseFirstLetter' for test data in 280 pull request

This commit is contained in:
Mikhael Bogdanov
2013-05-28 15:55:57 +04:00
parent bcc2c46e99
commit 7b6505e54f
@@ -43,11 +43,11 @@ public class JetCommenterTest extends LightCodeInsightTestCase {
} }
private void configure() throws Exception { private void configure() throws Exception {
configureFromFileText("a.kt", loadFile(getTestName(false) + ".kt")); configureFromFileText("a.kt", loadFile(getTestName(true) + ".kt"));
} }
private void check() throws Exception { private void check() throws Exception {
checkResultByText(loadFile(getTestName(false) + "_after.kt")); checkResultByText(loadFile(getTestName(true) + "_after.kt"));
} }
protected static String loadFile(String name) throws Exception { protected static String loadFile(String name) throws Exception {