Skip to content

Commit

Permalink
Merge pull request #14486 from ahrtr/fix_flaky_TestKVDelete
Browse files Browse the repository at this point in the history
Test: increase the TestKVDelete's timeout to 15s
  • Loading branch information
spzala authored Sep 17, 2022
2 parents cdf4228 + d657f2f commit 5e61b1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/common/kv_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ func TestKVDelete(t *testing.T) {
testRunner.BeforeTest(t)
for _, tc := range clusterTestCases {
t.Run(tc.name, func(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
ctx, cancel := context.WithTimeout(context.Background(), 15*time.Second)
defer cancel()
clus := testRunner.NewCluster(ctx, t, tc.config)
defer clus.Close()
Expand Down

0 comments on commit 5e61b1c

Please sign in to comment.