lazy bytestring fromStrict is not available in stable; use fromChunks instead

This commit is contained in:
Joey Hess 2014-05-29 20:25:01 -04:00
parent 2dd274e4ca
commit 0eb6576455

View file

@ -67,4 +67,4 @@ prop_hashes_stable = all (\(hasher, result) -> hasher foo == result)
#endif
]
where
foo = L.fromStrict $ T.encodeUtf8 $ T.pack "foo"
foo = L.fromChunks [T.encodeUtf8 $ T.pack "foo"]