[tests] renames new switch completion test and test data

GitOrigin-RevId: 0df47babf3095049c85b7acb0feedbf5d70dc205
This commit is contained in:
Roman Shevchenko
2019-07-05 01:10:36 +03:00
committed by intellij-monorepo-bot
parent f5cb5a77a7
commit 2ac6446259
5 changed files with 3 additions and 3 deletions
@@ -0,0 +1,8 @@
public class ConstConfig {
int test(int x) {
return switch (x) {
case 1:
if (Math.random() > 0.5) yi<caret>
};
}
}