Skip to content

Commit 350671f

Browse files
committed
Increase timeout for slow github-action machines
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
1 parent a2d7d0e commit 350671f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/session.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ mod tests {
432432

433433
#[test]
434434
fn test_read_line() -> Result<(), Error> {
435-
let mut s = spawn("cat", Some(1000))?;
435+
let mut s = spawn("cat", Some(100000))?;
436436
s.send_line("hans")?;
437437
assert_eq!("hans", s.read_line()?);
438438
let should = crate::process::wait::WaitStatus::Signaled(

0 commit comments

Comments
 (0)