Skip to content
Snippets Groups Projects
Commit f9467833 authored by Oleg Grenrus's avatar Oleg Grenrus
Browse files

Fix #2704

Code branch with zlib <0.6 cannot recognise the uncompressed input.
parent e88efa9d
No related branches found
No related tags found
No related merge requests found
{-# LANGUAGE CPP #-}
module UnitTests.Distribution.Client.GZipUtils (
tests
) where
......@@ -20,7 +21,9 @@ import Test.Tasty.QuickCheck
tests :: [TestTree]
tests = [ testCase "maybeDecompress" maybeDecompressUnitTest
#if MIN_VERSION_zlib(0,6,0)
, testProperty "decompress plain" prop_maybeDecompress_plain
#endif
, testProperty "decompress zlib" prop_maybeDecompress_zlib
, testProperty "decompress gzip" prop_maybeDecompress_gzip
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment