From 52a95a0d7c157401e46306dafe9be719cbbbdea0 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Mon, 7 Jul 2025 14:52:57 -0400 Subject: [PATCH] update test --- .../tests/runtime-runes/samples/effect-cleanup/_config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/svelte/tests/runtime-runes/samples/effect-cleanup/_config.js b/packages/svelte/tests/runtime-runes/samples/effect-cleanup/_config.js index 53e938d63f..416f61d23a 100644 --- a/packages/svelte/tests/runtime-runes/samples/effect-cleanup/_config.js +++ b/packages/svelte/tests/runtime-runes/samples/effect-cleanup/_config.js @@ -16,7 +16,7 @@ export default test({ // it works differently: https://github.com/sveltejs/svelte/pull/15564 assert.deepEqual( logs, - async_mode ? ['init 0', 'cleanup 2', null, 'init 2', 'cleanup 4', null, 'init 4'] : ['init 0'] + async_mode ? ['init 0', 'cleanup 0', null, 'init 2', 'cleanup 2', null, 'init 4'] : ['init 0'] ); } });