Skip to content

Commit 2fa4216

Browse files
committed
Increase timeout for long test in attempt to make CI happy
1 parent b6c0969 commit 2fa4216

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/semantics/untimed_untyped_lola/combinators.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1284,7 +1284,7 @@ mod combinator_tests {
12841284
);
12851285
let res_stream = defer::<TestConfig, Parser>(&ctx, e, eco_vec!["x".into(), "y".into()], 10);
12861286
ctx.run().await;
1287-
let res: Vec<Value> = with_timeout(res_stream.collect(), 3, "res_stream.collect")
1287+
let res: Vec<Value> = with_timeout(res_stream.collect(), 10, "res_stream.collect")
12881288
.await
12891289
.expect("Result timed out");
12901290
assert_eq!(res.len(), SIZE as usize);

0 commit comments

Comments
 (0)