diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 46560b9baeae0b..dfcd121f1e6347 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -2721,15 +2721,6 @@ fn permission_args(app: Command) -> Command { .action(ArgAction::SetTrue) .help(ALLOW_ALL_HELP), ) - .arg( - Arg::new("prompt") - .long("prompt") - .action(ArgAction::SetTrue) - .hide(true) - .help( - "deprecated: Fallback to prompt if required permission wasn't passed", - ), - ) .arg( Arg::new("no-prompt") .long("no-prompt") diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs index 3fd0133764a6d9..983916ebb79e63 100644 --- a/cli/tests/integration/run_tests.rs +++ b/cli/tests/integration/run_tests.rs @@ -2913,7 +2913,7 @@ itest!(byte_order_mark { fn issue9750() { TestContext::default() .new_command() - .args_vec(["run", "--prompt", "run/issue9750.js"]) + .args_vec(["run", "run/issue9750.js"]) .with_pty(|mut console| { console.expect("Enter 'yy':"); console.write_line_raw("yy");