From 1b17ccda914de78a88e1edbb42ce70d963d4b5a2 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 7 Dec 2025 17:31:10 +0900 Subject: internal/system: optional op check parallelism The PipeWire Op check cannot be made parallel due to the OS interaction. Signed-off-by: Ophestra --- internal/system/link_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/system/link_test.go') diff --git a/internal/system/link_test.go b/internal/system/link_test.go index d719931f..b1d845b6 100644 --- a/internal/system/link_test.go +++ b/internal/system/link_test.go @@ -10,7 +10,7 @@ import ( func TestHardlinkOp(t *testing.T) { t.Parallel() - checkOpBehaviour(t, []opBehaviourTestCase{ + checkOpBehaviour(t, 0, []opBehaviourTestCase{ {"link", 0xbeef, 0xff, &hardlinkOp{hst.EPulse, "/run/user/1000/hakurei/9663730666a44cfc2a81610379e02ed6/pulse", "/run/user/1000/pulse/native"}, []stub.Call{ call("verbose", stub.ExpectArgs{[]any{"linking", &hardlinkOp{hst.EPulse, "/run/user/1000/hakurei/9663730666a44cfc2a81610379e02ed6/pulse", "/run/user/1000/pulse/native"}}}, nil, nil), call("link", stub.ExpectArgs{"/run/user/1000/pulse/native", "/run/user/1000/hakurei/9663730666a44cfc2a81610379e02ed6/pulse"}, nil, stub.UniqueError(1)), -- cgit v1.3.1