diff --git a/test/client-proxy/test-http-set-global-proxy-from-env-override-fetch.mjs b/test/client-proxy/test-http-set-global-proxy-from-env-override-fetch.mjs index 04bcbc33c50eda..511ac15ddb6c9f 100644 --- a/test/client-proxy/test-http-set-global-proxy-from-env-override-fetch.mjs +++ b/test/client-proxy/test-http-set-global-proxy-from-env-override-fetch.mjs @@ -25,7 +25,7 @@ await checkProxiedFetch({ shutdown(); proxy2.close(); -// Verify request did NOT go through original proxy, but the overriden one. +// Verify request did NOT go through original proxy, but the overridden one. assert.deepStrictEqual(proxyLogs, []); // FIXME(undici:4083): undici currently always tunnels the request over diff --git a/test/client-proxy/test-http-set-global-proxy-from-env-override-http.mjs b/test/client-proxy/test-http-set-global-proxy-from-env-override-http.mjs index a09d29831b58c6..a10502c88b059e 100644 --- a/test/client-proxy/test-http-set-global-proxy-from-env-override-http.mjs +++ b/test/client-proxy/test-http-set-global-proxy-from-env-override-http.mjs @@ -25,7 +25,7 @@ await checkProxiedRequest({ shutdown(); proxy2.close(); -// Verify request did NOT go through original proxy, but the overriden one. +// Verify request did NOT go through original proxy, but the overridden one. assert.deepStrictEqual(proxyLogs, []); const expectedLogs = [{ diff --git a/test/embedding/test-embedding-snapshot-vm.js b/test/embedding/test-embedding-snapshot-vm.js index 0d60059056ad2f..fdf09cf6be371d 100644 --- a/test/embedding/test-embedding-snapshot-vm.js +++ b/test/embedding/test-embedding-snapshot-vm.js @@ -27,7 +27,7 @@ const runSnapshotExecArgs = ['arg3', 'arg4']; tmpdir.refresh(); -// Build the snapshot with the vm-creating code in serialized main funciton. +// Build the snapshot with the vm-creating code in serialized main function. spawnSyncAndExitWithoutError( embedtest, ['--', ...buildSnapshotExecArgs, ...snapshotBlobArgs, '--embedder-snapshot-create'], diff --git a/test/embedding/test-embedding-snapshot-worker.js b/test/embedding/test-embedding-snapshot-worker.js index c6f665eed4d116..9349030fd505c2 100644 --- a/test/embedding/test-embedding-snapshot-worker.js +++ b/test/embedding/test-embedding-snapshot-worker.js @@ -27,7 +27,7 @@ const runSnapshotExecArgs = ['arg3', 'arg4']; tmpdir.refresh(); -// Build the snapshot with the worker-creating code in serialized main funciton. +// Build the snapshot with the worker-creating code in serialized main function. spawnSyncAndExitWithoutError( embedtest, ['--', ...buildSnapshotExecArgs, ...snapshotBlobArgs, '--embedder-snapshot-create'],