diff --git a/integration-tests/js-compute/fixtures/module-mode/src/kv-store.js b/integration-tests/js-compute/fixtures/module-mode/src/kv-store.js index c261bb53ab..a1f9dd094a 100644 --- a/integration-tests/js-compute/fixtures/module-mode/src/kv-store.js +++ b/integration-tests/js-compute/fixtures/module-mode/src/kv-store.js @@ -43,6 +43,7 @@ const debug = sdkVersion.endsWith('-debug'); for (let i = 0; i < 100; i++) { await store.put('c' + i, 'd', { + mode: 'overwrite', metadata: i % 2 === 0 ? '42' : new Uint8Array([42]), }); } @@ -61,7 +62,7 @@ const debug = sdkVersion.endsWith('-debug'); await store.put('c5', 'cba', { mode: 'prepend', - metadata: new Uint8Array([0xf0, 0xf0]), + metadata: 'cbad', }); const c5Entry = await store.get('c5'); if (isRunningLocally()) {