Skip to content

Commit

Permalink
increase timeout again for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
omerbenamram committed Jun 4, 2019
1 parent 781d57d commit 971c768
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_cli_interactive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 971c768

Please sign in to comment.