From 04be1fd0cd33180b47e9349b9c1c239256e79a86 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sat, 11 Aug 2018 16:18:34 -0400 Subject: [PATCH] fix test --- .../debug-foo-bar-baz-things/expected-bundle.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/js/samples/debug-foo-bar-baz-things/expected-bundle.js b/test/js/samples/debug-foo-bar-baz-things/expected-bundle.js index f7365d1ef7..92431339d1 100644 --- a/test/js/samples/debug-foo-bar-baz-things/expected-bundle.js +++ b/test/js/samples/debug-foo-bar-baz-things/expected-bundle.js @@ -232,8 +232,8 @@ function create_each_block(component, ctx) { text = createText(text_value); text_1 = createText("\n\t"); - const { foo, bar, baz } = ctx; - console.log({ foo, bar, baz }); + const { foo, bar, baz, thing } = ctx; + console.log({ foo, bar, baz, thing }); debugger; }, @@ -248,9 +248,9 @@ function create_each_block(component, ctx) { setData(text, text_value); } - if (changed.foo || changed.bar || changed.baz) { - const { foo, bar, baz } = ctx; - console.log({ foo, bar, baz }); + if (changed.foo || changed.bar || changed.baz || changed.things) { + const { foo, bar, baz, thing } = ctx; + console.log({ foo, bar, baz, thing }); debugger; } },