Skip to content

Commit 2aaef90

Browse files
authored
test(support/bundler): increase context timeout to avoid occasional test failures (#3017)
fixes: #3008
1 parent 8169e72 commit 2aaef90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

support/bundler/bundler_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ func TestBundlerTimeBasedFlushDeadlock(t *testing.T) {
394394
b.BundleByteThreshold = math.MaxInt32
395395

396396
ctx, cancel := context.WithCancel(context.Background())
397-
time.AfterFunc(15*time.Second, cancel)
397+
time.AfterFunc(30*time.Second, cancel)
398398

399399
add := func(i int) {
400400
for j := 0; j < iterations; j++ {

0 commit comments

Comments
 (0)