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

GitOrigin-RevId: 69ded152ad5996ae07c45dc4fd6ff20224d25572
This commit is contained in:
Dmitry.Krasilschikov
2019-12-31 20:54:06 +02:00
committed by intellij-monorepo-bot
parent 240e2cea4c
commit 38f6f13df8
33 changed files with 144 additions and 144 deletions

View File

@@ -79,17 +79,17 @@ public class PyConvertCollectionLiteralIntentionTest extends PyIntentionTestCase
// PY-9419
public void testConvertSetToTuple() {
doIntentionTest(getCONVERT_SET_TO_TUPLE());
doIntentionTest(getConvertSetToTuple());
}
// PY-9419
public void testConvertSetWithoutClosingBraceToTuple() {
doIntentionTest(getCONVERT_SET_TO_TUPLE());
doIntentionTest(getConvertSetToTuple());
}
// PY-9419
public void testConvertSetToList() {
doIntentionTest(getCONVERT_SET_TO_LIST());
doIntentionTest(getConvertSetToList());
}
// PY-16335
@@ -158,11 +158,11 @@ public class PyConvertCollectionLiteralIntentionTest extends PyIntentionTestCase
return PyBundle.message("INTN.convert.collection.literal.text", "list", "set");
}
private static String getCONVERT_SET_TO_TUPLE() {
private static String getConvertSetToTuple() {
return PyBundle.message("INTN.convert.collection.literal.text", "set", "tuple");
}
private static String getCONVERT_SET_TO_LIST() {
private static String getConvertSetToList() {
return PyBundle.message("INTN.convert.collection.literal.text", "set", "list");
}
}