From 88bb7d3dd89b8a4ffaa9797a246ee0801999884a Mon Sep 17 00:00:00 2001 From: Jade Welton Date: Tue, 7 Jul 2026 12:18:27 -0700 Subject: [PATCH] Fix the account prefix env. variable. --- test/fx.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/fx.ts b/test/fx.ts index 26c36c371..c16b0316f 100644 --- a/test/fx.ts +++ b/test/fx.ts @@ -45,9 +45,9 @@ export enum TestAccount { } export function getDefaultAccountName(accountType: TestAccount): string { - const accountNamePrefix = process.env.DE_TEST_ACCOUNT_PREFIX; + const accountNamePrefix = process.env.DE_ACCOUNT_PREFIX; if (!accountNamePrefix) { - throw new Error("DE_TEST_ACCOUNT_PREFIX is not set"); + throw new Error("DE_ACCOUNT_PREFIX is not set"); } switch (accountType) {