From 44f5b7d013ad30aacd535face6b7d447be53536f Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Mon, 29 Dec 2014 01:39:04 +1100 Subject: [PATCH] fix case statement newline in code generator test --- .../types/SwitchStatement-SwitchCase/expected.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) 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(); }