From 420c721c7da46ab1c633b019441b7b623215fd12 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 17 Mar 2026 17:02:36 +0900 Subject: all: raise timeout defaults This avoids timing out on systems running very slowly. Signed-off-by: Ophestra --- internal/system/pipewire_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/system') diff --git a/internal/system/pipewire_test.go b/internal/system/pipewire_test.go index 052495cc..d1bf5781 100644 --- a/internal/system/pipewire_test.go +++ b/internal/system/pipewire_test.go @@ -499,7 +499,7 @@ type stubPipeWireConn struct { } func (conn *stubPipeWireConn) MightBlock(timeout time.Duration) { - if timeout != 5*time.Second { + if timeout != pipewire.RoundtripTimeout { panic("unexpected timeout " + timeout.String()) } } -- cgit v1.3.1