From 20263c1151d55aad57d22d475fdfc0ea248d1ea7 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Fri, 14 Nov 2014 00:55:39 +1100 Subject: [PATCH] fix newline in let-scoping/for-break-continue-return test --- .../let-scoping/for-break-continue-return/expected.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/fixtures/transformation/let-scoping/for-break-continue-return/expected.js b/test/fixtures/transformation/let-scoping/for-break-continue-return/expected.js index 7287b97822..8cc4f0e1af 100644 --- a/test/fixtures/transformation/let-scoping/for-break-continue-return/expected.js +++ b/test/fixtures/transformation/let-scoping/for-break-continue-return/expected.js @@ -19,6 +19,7 @@ _loop: for (var i in nums) { switch (_ret) { case "break": break _loop; case "continue": continue _loop; - default: if (typeof _ret === "object") return _ret.v; + default: + if (typeof _ret === "object") return _ret.v; } }