mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-03-19 05:25:11 +01:00
Reduce number of hashes used in GolombFilterTest to keep CI from timing out (#1494)
This commit is contained in:
parent
89ec91f3f3
commit
7fd36e9311
1 changed files with 1 additions and 1 deletions
|
@ -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) =>
|
||||
|
|
Loading…
Add table
Reference in a new issue