Skip to content

Commit c1d6ee5

Browse files
committed
Fix typos
1 parent ef9cfd9 commit c1d6ee5

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

src/start-proxy/environment.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,6 @@ test("checkProxyEnvVars - logs values when variables are set", (t) => {
141141
process.env[envVar] = envVar;
142142
}
143143

144-
for (const envVar of Object.values(ProxyEnvVars)) {
145-
process.env[envVar] = envVar;
146-
}
147-
148144
checkProxyEnvVars(logger);
149145
assertEnvVarLogMessages(t, Object.values(ProxyEnvVars), messages, true);
150146
});

src/start-proxy/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export function checkJavaEnvVars(logger: Logger) {
4242
}
4343

4444
/**
45-
* Discovers paths to JDK directories based on JAVA_HOME and GHA-specific environement variables.
45+
* Discovers paths to JDK directories based on JAVA_HOME and GHA-specific environment variables.
4646
* @returns A set of JDK paths.
4747
*/
4848
export function discoverActionsJdks(): Set<string> {

0 commit comments

Comments
 (0)