chore: improve inclusive-language (#7558)

This commit is contained in:
Jack Wotherspoon
2025-09-02 18:09:28 -06:00
committed by GitHub
parent 5e1651954d
commit 39c35e7d61
6 changed files with 12 additions and 12 deletions

View File

@@ -380,7 +380,7 @@ describe('ShellTool', () => {
});
describe('shouldConfirmExecute', () => {
it('should request confirmation for a new command and whitelist it on "Always"', async () => {
it('should request confirmation for a new command and allowlist it on "Always"', async () => {
const params = { command: 'npm install' };
const invocation = shellTool.build(params);
const confirmation = await invocation.shouldConfirmExecute(
@@ -395,7 +395,7 @@ describe('ShellTool', () => {
ToolConfirmationOutcome.ProceedAlways,
);
// Should now be whitelisted
// Should now be allowlisted
const secondInvocation = shellTool.build({ command: 'npm test' });
const secondConfirmation = await secondInvocation.shouldConfirmExecute(
new AbortController().signal,