Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/mft.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmer Ben-Amram <omerbenamram@gmail.com>2019-06-04 20:28:32 +0300
committerOmer Ben-Amram <omerbenamram@gmail.com>2019-06-04 20:28:32 +0300
commit971c768c97d08f615a6057fcd7138220ab9cfa16 (patch)
tree390214f6517fa441eaf4d1bdaf3243c630b7a486
parent781d57d2ac555716e23b37e0fc7abc02cf4db890 (diff)
increase timeout again for CI0.4.2
-rw-r--r--tests/test_cli_interactive.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_cli_interactive.rs b/tests/test_cli_interactive.rs
index 5f7111f..6667ac0 100644
--- a/tests/test_cli_interactive.rs
+++ b/tests/test_cli_interactive.rs
@@ -33,7 +33,7 @@ fn test_it_confirms_before_overwriting_a_file() {
sample = sample.to_str().unwrap()
);
- let mut p = spawn(&cmd_string, Some(10000)).unwrap();
+ let mut p = spawn(&cmd_string, Some(20000)).unwrap();
p.exp_regex(r#"Are you sure you want to override.*"#)
.unwrap();
p.send_line("y").unwrap();
@@ -66,7 +66,7 @@ fn test_it_confirms_before_overwriting_a_file_and_quits() {
sample = sample.to_str().unwrap()
);
- let mut p = spawn(&cmd_string, Some(10000)).unwrap();
+ let mut p = spawn(&cmd_string, Some(20000)).unwrap();
p.exp_regex(r#"Are you sure you want to override.*"#)
.unwrap();
p.send_line("n").unwrap();