increase test chan size (#2797)

This test has a race condition. This change makes it less likely to cause a test failure, and is a stopgap measure to de-flake the test while we investigate the underlying issue.
This commit is contained in:
Cody Rose 2024-05-07 11:11:11 -04:00 committed by GitHub
parent 288003519a
commit a317897d66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -242,7 +242,7 @@ func TestSourceManagerNonFatalError(t *testing.T) {
}
func TestSourceManagerContextCancelled(t *testing.T) {
mgr := NewManager(WithBufferedOutput(8))
mgr := NewManager(WithBufferedOutput(16))
source, err := buildDummy(&counterChunker{count: 100})
assert.NoError(t, err)