From 531de70b966f99d4a99da54129daef9d4f8d1a19 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 12 Dec 2024 12:19:13 +0100 Subject: [PATCH] tests/integration: increase mpv command timeout --- tests/integration_tests/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration_tests/util.rs b/tests/integration_tests/util.rs index a0f6079..b087619 100644 --- a/tests/integration_tests/util.rs +++ b/tests/integration_tests/util.rs @@ -25,7 +25,7 @@ pub async fn spawn_headless_mpv() -> Result<(Child, Mpv), MpvError> { .spawn() .expect("Failed to start mpv"); - timeout(Duration::from_millis(500), async { + timeout(Duration::from_millis(1000), async { while !&socket_path.exists() { sleep(Duration::from_millis(10)).await; }