summaryrefslogtreecommitdiff
path: root/cli/tests/integration/run_tests.rs
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-01-24 03:40:49 +1100
committerGitHub <noreply@github.com>2024-01-23 17:40:49 +0100
commitd1eed9896f1dee6974816f1c16c46a1c4de0120c (patch)
treed11de67d28024a6987c7b769802b03334477f7b7 /cli/tests/integration/run_tests.rs
parent18a235e6088a43411bbeca79bae8bcc646f72104 (diff)
fix(BREAKING): remove dead `--prompt` flag (#22038)
It appears the `--prompt` flag has done nothing for some time. Perhaps, since #13650. Classifying this as a dead functionality removal for this reason. Did this while working on #22021.
Diffstat (limited to 'cli/tests/integration/run_tests.rs')
-rw-r--r--cli/tests/integration/run_tests.rs2
1 files changed, 1 insertions, 1 deletions
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");