diff --git a/test/fixtures/generation/types/SwitchStatement-SwitchCase/expected.js b/test/fixtures/generation/types/SwitchStatement-SwitchCase/expected.js index dbfef765fe..3fee51a4d2 100644 --- a/test/fixtures/generation/types/SwitchStatement-SwitchCase/expected.js +++ b/test/fixtures/generation/types/SwitchStatement-SwitchCase/expected.js @@ -33,7 +33,10 @@ switch (foo) { } switch (foo) { - case "foo": foo(); - case "bar": bar(); - default: yay(); + case "foo": + foo(); + case "bar": + bar(); + default: + yay(); }