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") -}