diff --git a/packages/compass-smoke-tests/src/tests/auto-update-to.ts b/packages/compass-smoke-tests/src/tests/auto-update-to.ts index 9f406260047..b9c678b340d 100644 --- a/packages/compass-smoke-tests/src/tests/auto-update-to.ts +++ b/packages/compass-smoke-tests/src/tests/auto-update-to.ts @@ -57,11 +57,13 @@ export async function testAutoUpdateTo(context: SmokeTestsContext) { bucket_key_prefix: context.bucketKeyPrefix, }); } else { - process.env.PUBLISHED_RELEASES = JSON.stringify({ - name: version, - body: version, - bucket_key_prefix: context.bucketKeyPrefix, - }); + process.env.PUBLISHED_RELEASES = JSON.stringify([ + { + name: version, + body: version, + bucket_key_prefix: context.bucketKeyPrefix, + }, + ]); } const server = await startAutoUpdateServer();