diff options
Diffstat (limited to 'internal/system')
| -rw-r--r-- | internal/system/pipewire_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/system/pipewire_test.go b/internal/system/pipewire_test.go index d1bf5781..f0ca0b34 100644 --- a/internal/system/pipewire_test.go +++ b/internal/system/pipewire_test.go @@ -3,7 +3,7 @@ package system import ( "fmt" "os" - "path" + "path/filepath" "syscall" "testing" "time" @@ -18,7 +18,7 @@ func TestPipeWireOp(t *testing.T) { checkOpBehaviour(t, checkNoParallel, []opBehaviourTestCase{ {"success", 0xbeef, 0xff, &pipewireOp{nil, - m(path.Join(t.TempDir(), "pipewire")), + m(filepath.Join(t.TempDir(), "pipewire")), "org.chromium.Chromium", "ebf083d1b175911782d413369b64ce7c", }, []stub.Call{ |
