Formatter tests: Fix wrong test file extension (prevented a bunch of formatter tests from running)

This commit is contained in:
Pavel V. Talanov
2014-01-15 15:17:11 +04:00
parent 2d6f8aef4e
commit 586ac35c7b
@@ -133,7 +133,7 @@ public abstract class AbstractJetFormatterTest extends LightIdeaTestCase {
configurator.configureSettings();
doTextTest(originalFileText, new File(testFileName + ".after.kt"));
String afterInvertedFileName = testFileName + ".after_inv.kt";
String afterInvertedFileName = testFileName + ".after.inv.kt";
if (new File(afterInvertedFileName).exists()) {
configurator.configureInvertedSettings();
doTextTest(originalFileText, new File(afterInvertedFileName));