Skip to content

Commit

Permalink
fix: increase ctx timeout in cel unit-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pkoutsovasilis committed May 24, 2024
1 parent 809e001 commit 6a0fb16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/filebeat/input/cel/input_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1570,7 +1570,7 @@ func TestInput(t *testing.T) {
t.Fatalf("unexpected error running test: %v", err)
}

ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()

v2Ctx := v2.Context{
Expand Down

0 comments on commit 6a0fb16

Please sign in to comment.