Reduce GCS generator params again to try and stop timing out on CI (#1144)

* Reduce GCS generator params again to try and stop timing out on CI

* Reduce magic number to 30 as 40 can still fail

* Reduce gain
This commit is contained in:
Chris Stewart 2020-02-21 11:22:04 -06:00 committed by GitHub
parent 95902d4148
commit 436e1ab1da

View File

@ -187,7 +187,7 @@ class GCSTest extends BitcoinSUnitTest {
it must "encode and decode arbitrary sets of elements for arbitrary p" in {
val upperBoundGen = Gen.choose(10, 50) //what are these numbers?
val upperBoundGen = Gen.choose(10, 20) //what are these numbers?
val itemsGen: Gen[(Vector[UInt64], UInt8)] = {
NumberGenerator.genP.flatMap { p =>