Skip to content

Commit 04db672

Browse files
committed
remove test
1 parent 889e5da commit 04db672

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

internal/watcher/process/process_operator_test.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,12 @@
66
package process
77

88
import (
9-
"context"
109
"testing"
1110

1211
"github.com/stretchr/testify/assert"
13-
"github.com/stretchr/testify/require"
1412
)
1513

1614
func TestNewProcessOperator(t *testing.T) {
1715
po := NewProcessOperator()
1816
assert.NotNil(t, po)
1917
}
20-
21-
func TestProcessOperator_Processes(t *testing.T) {
22-
ctx := context.Background()
23-
po := &ProcessOperator{}
24-
got, err := po.Processes(ctx)
25-
require.NoError(t, err)
26-
assert.NotEmpty(t, got)
27-
}

0 commit comments

Comments
 (0)