chore(dart): remove tests for switch

This commit is contained in:
Robert Brunhage 2023-04-12 19:00:13 +02:00 committed by Stephan Seitz
parent e9de9cedf0
commit ba6c55b203
2 changed files with 0 additions and 12 deletions

View file

@ -1,9 +0,0 @@
void test() {
final a = 69;
switch (a) {
case 69:
break;
case 420:
default:
}
}

View file

@ -14,7 +14,6 @@ describe("indent Lua:", function()
expected_failures = {
"./multiple_arguments.dart",
"./class.dart",
"./switch.dart",
"./class_function_argument.dart",
},
})
@ -33,7 +32,5 @@ describe("new line:", function()
"expected failure issue #4637",
XFAIL
)
run:new_line("switch.dart", { on_line = 3, text = "case 7:", indent = 4 })
run:new_line("switch.dart", { on_line = 6, text = "break;", indent = 6 }, "expected failure", XFAIL)
run:new_line("class_function_argument.dart", { on_line = 11, text = "}", indent = 4 })
end)