Skip to content

Commit 536808a

Browse files
committed
update to modem
1 parent 272c601 commit 536808a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/client/testing/configuration/pytestInstallationHelper.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,8 @@ export class PytestInstallationHelper {
2222
async promptToInstallPytest(workspaceUri: Uri): Promise<boolean> {
2323
const message = l10n.t('pytest selected but not installed. Would you like to install pytest?');
2424
const installOption = l10n.t('Install pytest');
25-
const ignoreOption = l10n.t('Ignore');
2625

27-
const selection = await this.appShell.showInformationMessage(
28-
message,
29-
{ modal: true },
30-
installOption,
31-
ignoreOption,
32-
);
26+
const selection = await this.appShell.showInformationMessage(message, { modal: true }, installOption);
3327

3428
if (selection === installOption) {
3529
return this.installPytest(workspaceUri);

0 commit comments

Comments
 (0)