On 1.14.2 and 1.14.1, I get the following: ```scala scala> (1 to 10000).toList.map(_ => Gen.posNum[Int].sample).flatten.length res99: Int = 9904 scala> (1 to 10000).toList.map(_ => Gen.posNum[Int].sample).flatten.length res100: Int = 9887 ``` This issue is absent on 1.14.0: ```scala scala> (1 to 10000).toList.map(_ => Gen.posNum[Int].sample).flatten.length res1: Int = 10000 scala> (1 to 10000).toList.map(_ => Gen.posNum[Int].sample).flatten.length res2: Int = 10000 ``` This might be related to #567 [1.14.1 failing build](https://travis-ci.org/clovellytech/http4s-modules/jobs/586623814#L1449) [1.14.2 failing build](https://travis-ci.com/clovellytech/http4s-modules/jobs/239120610#L1376) [My project's version pr](https://github.com/clovellytech/http4s-modules/pull/147) [My use case](https://github.com/clovellytech/http4s-modules/blob/master/modules/store/src/test/scala/h4sm/store/infrastructure/repository/sql/arbitraries.scala#L12)