Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions megaparsec-tests/megaparsec-tests.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ library
hs-source-dirs: src
default-language: Haskell2010
build-depends:
QuickCheck >=2.10 && <2.18,
QuickCheck >=2.17 && <2.18,
base >=4.15 && <5,
bytestring >=0.2 && <0.13,
containers >=0.5 && <0.9,
Expand Down Expand Up @@ -63,7 +63,7 @@ test-suite tests

default-language: Haskell2010
build-depends:
QuickCheck >=2.10 && <2.18,
QuickCheck >=2.17 && <2.18,
base >=4.15 && <5,
bytestring >=0.2 && <0.13,
case-insensitive >=1.2 && <1.3,
Expand Down
3 changes: 0 additions & 3 deletions megaparsec-tests/src/Test/Hspec/Megaparsec/AdHoc.hs
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,3 @@ instance Arbitrary B.ByteString where

instance Arbitrary BL.ByteString where
arbitrary = BL.pack <$> arbitrary

instance (Arbitrary a) => Arbitrary (NonEmpty a) where
arbitrary = NE.fromList <$> (arbitrary `suchThat` (not . null))
Loading