Reduce number of goroutines in test, to avoid hitting the hard limit of 8128

This commit is contained in:
Deluan 2022-11-26 15:28:30 -05:00
parent a69a31a3bf
commit 7bafbce816
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ var _ = Describe("GetInstance", func() {
})
It("only calls the constructor once when called concurrently", func() {
const maxCalls = 20000
const maxCalls = 8000
var numCalls int32
start := sync.WaitGroup{}
start.Add(1)