summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/args/flags.rs9
-rw-r--r--cli/tests/integration/run_tests.rs2
2 files changed, 1 insertions, 10 deletions
diff --git a/cli/args/flags.rs b/cli/args/flags.rs
index 114cd4551..707e28256 100644
--- a/cli/args/flags.rs
+++ b/cli/args/flags.rs
@@ -2729,15 +2729,6 @@ fn permission_args(app: Command) -> Command {
.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")
.action(ArgAction::SetTrue)
diff --git a/cli/tests/integration/run_tests.rs b/cli/tests/integration/run_tests.rs
index 03aa8893f..429ec2a04 100644
--- a/cli/tests/integration/run_tests.rs
+++ b/cli/tests/integration/run_tests.rs
@@ -3060,7 +3060,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");