diff --git a/src/commands/quickSearch.ts b/src/commands/quickSearch.ts index 828e7b82..938c9c15 100644 --- a/src/commands/quickSearch.ts +++ b/src/commands/quickSearch.ts @@ -29,12 +29,12 @@ export class QuickSearchProvider implements vscode.CodeActionProvider { }; const codeAction = new vscode.CodeAction( - 'Explain with AppMap AI', + 'Explain with AppMap Navie AI', vscode.CodeActionKind.Refactor ); codeAction.command = { command: 'appmap.quickExplain', - title: 'Explain with AppMap AI', + title: 'Explain with AppMap Navie AI', arguments: [workspaceFolder.uri, codeSelection], }; return [codeAction]; diff --git a/test/unit/commands/quickSearch.test.ts b/test/unit/commands/quickSearch.test.ts index ca30a50d..fa97d1a8 100644 --- a/test/unit/commands/quickSearch.test.ts +++ b/test/unit/commands/quickSearch.test.ts @@ -30,12 +30,12 @@ describe('Quick search', () => { expect(actions).to.be.an('array'); expect(actions).to.have.lengthOf(1); const action = actions[0]; - expect(action.title).to.equal('Explain with AppMap AI'); + expect(action.title).to.equal('Explain with AppMap Navie AI'); expect(JSON.stringify(action.command, null, 2)).to.equal( JSON.stringify( { command: 'appmap.quickExplain', - title: 'Explain with AppMap AI', + title: 'Explain with AppMap Navie AI', arguments: [ TEST_WORKSPACE.uri, {