From 44a4bea3674f38a004857716e2354fa85f99ed7e Mon Sep 17 00:00:00 2001 From: "Michael B. Gale" Date: Tue, 17 Feb 2026 13:54:22 +0000 Subject: [PATCH] Fixup: add missing `.env` --- src/start-proxy/environment.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/start-proxy/environment.test.ts b/src/start-proxy/environment.test.ts index edcddab56..80a046a2e 100644 --- a/src/start-proxy/environment.test.ts +++ b/src/start-proxy/environment.test.ts @@ -73,7 +73,7 @@ test("discoverActionsJdks - discovers JDK paths", (t) => { // Clear GHA variables that may interfere with this test in CI. for (const envVar of Object.keys(process.env)) { if (envVar.startsWith("JAVA_HOME_")) { - delete process[envVar]; + delete process.env[envVar]; } }