We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 426119a commit 7bdc3f4Copy full SHA for 7bdc3f4
1 file changed
pkg/filter/ql/parser_test.go
@@ -20,12 +20,13 @@ package ql
20
21
import (
22
"errors"
23
+ "testing"
24
+ "time"
25
+
26
"github.com/rabbitstack/fibratus/pkg/config"
27
"github.com/rabbitstack/fibratus/pkg/filter/fields"
28
"github.com/stretchr/testify/assert"
29
"github.com/stretchr/testify/require"
- "testing"
- "time"
30
)
31
32
func TestParser(t *testing.T) {
@@ -353,7 +354,7 @@ func TestParseSequence(t *testing.T) {
353
354
355
`by ps.uuid
356
maxspan 2m
- |evt.name = 'CreateProcess'| by ps.child.uuid
357
+ |evt.name = 'CreateProcess'| by ps.uuid
358
|evt.name = 'CreateFile'| by ps.uuid
359
`,
360
errors.New("sequence mixes global and per-expression 'by' statements"),
0 commit comments