From 533e7be51b2ab41e5518a3ca1b4f2e14a224a8d2 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Mon, 17 Feb 2025 19:24:11 +0100 Subject: [PATCH] - --- libs/process/wait_unix_test.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 libs/process/wait_unix_test.go diff --git a/libs/process/wait_unix_test.go b/libs/process/wait_unix_test.go deleted file mode 100644 index 98fbd0c79..000000000 --- a/libs/process/wait_unix_test.go +++ /dev/null @@ -1,18 +0,0 @@ -package process - -import ( - "runtime" - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestWaitForPidUnix(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("Skipping test on windows") - } - - // Out of bounds pid. Should return an error. - err := waitForPid(1000000) - assert.EqualError(t, err, "process with pid 1000000 does not exist") -}