mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
LAB-62 get rid of static *Bundle usages: more fields
GitOrigin-RevId: 69ded152ad5996ae07c45dc4fd6ff20224d25572
This commit is contained in:
committed by
intellij-monorepo-bot
parent
240e2cea4c
commit
38f6f13df8
@@ -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");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user