attoparsec
attoparsec copied to clipboard
upper bound on QuickCheck too low
trafficstars
test-suites don't participate in the install-plan solving when QuickCheck is used as a library dependency; hence we don't need to keep them working w/ the latest dependencies at all times.
Nevertheless this bound is needlessly restrictive and causes us additional work.
@clinty, note that due to changes in semantics the testsuite currently doesn't pass with QuickCheck 2.11. I would be happy to accept a patch fixing this and bumping the bound.
Well, it works with
- , testProperty "satisfyWith" satisfyWith
+ , testProperty "satisfyWith" (forAll arbitraryASCIIChar satisfyWith)
but I'm not sure that's the best fix.