LAB-62 get rid of static *Bundle usages: more fields with readable name

GitOrigin-RevId: a57e5216970e96c9e4ff5139ca8f5566835ca2e6
This commit is contained in:
Dmitry.Krasilschikov
2019-12-31 18:49:35 +02:00
committed by intellij-monorepo-bot
parent 81be21f0e8
commit 8718df4f50
38 changed files with 114 additions and 114 deletions

View File

@@ -74,7 +74,7 @@ public class PyConvertCollectionLiteralIntentionTest extends PyIntentionTestCase
// PY-9419
public void testConvertListToSet() {
doIntentionTest(getCONVERT_LIST_TO_SET());
doIntentionTest(getConvertListToSet());
}
// PY-9419
@@ -139,7 +139,7 @@ public class PyConvertCollectionLiteralIntentionTest extends PyIntentionTestCase
// PY-19399
public void testCannotConvertEmptyListToSet() {
doNegativeTest(getCONVERT_LIST_TO_SET());
doNegativeTest(getConvertListToSet());
}
private static String getConvertTupleToList() {
@@ -154,7 +154,7 @@ public class PyConvertCollectionLiteralIntentionTest extends PyIntentionTestCase
return PyBundle.message("INTN.convert.collection.literal.text", "list", "tuple");
}
private static String getCONVERT_LIST_TO_SET() {
private static String getConvertListToSet() {
return PyBundle.message("INTN.convert.collection.literal.text", "list", "set");
}