diff --git a/test/runtime/samples/const-tag-each-arrow/_config.js b/test/runtime/samples/const-tag-each-arrow/_config.js index cba74780bd..8e8036b851 100644 --- a/test/runtime/samples/const-tag-each-arrow/_config.js +++ b/test/runtime/samples/const-tag-each-arrow/_config.js @@ -1,6 +1,6 @@ export default { html: ` -

#FF0000

+

#FF0000

#00FF00

#0000FF

`, diff --git a/test/runtime/samples/const-tag-each-arrow/main.svelte b/test/runtime/samples/const-tag-each-arrow/main.svelte index aa67376c0b..7292a7d485 100644 --- a/test/runtime/samples/const-tag-each-arrow/main.svelte +++ b/test/runtime/samples/const-tag-each-arrow/main.svelte @@ -2,17 +2,17 @@ export let tags = [ { name: 'Red', - color: '#FF0000', + color: '#FF0000' }, { name: 'Green', - color: '#00FF00', + color: '#00FF00' }, { name: 'Blue', - color: '#0000FF', - }, - ] + color: '#0000FF' + } + ]; {#each tags as tag}