mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 07:04:24 +00:00
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:
parent
288003519a
commit
a317897d66
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue