Reduce number of hashes used in GolombFilterTest to keep CI from timing out (#1494)

This commit is contained in:
Chris Stewart 2020-06-01 09:29:02 -05:00 committed by GitHub
parent 89ec91f3f3
commit 7fd36e9311
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,7 @@ class GolombFilterTest extends BitcoinSUnitTest {
}
val genRandHashes: Gen[Vector[UInt64]] =
Gen.listOfN(1000, NumberGenerator.uInt64).map(_.toVector)
Gen.listOfN(100, NumberGenerator.uInt64).map(_.toVector)
forAll(genKey, genData, genRandHashes) {
case (k, data, randHashes) =>