Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [{
Expand Down
2 changes: 1 addition & 1 deletion test/embedding/test-embedding-snapshot-vm.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
2 changes: 1 addition & 1 deletion test/embedding/test-embedding-snapshot-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down
Loading