aboutsummaryrefslogtreecommitdiff
path: root/tests/Data/Digest/HashTests.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Data/Digest/HashTests.hs')
-rw-r--r--tests/Data/Digest/HashTests.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Data/Digest/HashTests.hs b/tests/Data/Digest/HashTests.hs
index 16b1aa8..45b31e2 100644
--- a/tests/Data/Digest/HashTests.hs
+++ b/tests/Data/Digest/HashTests.hs
@@ -17,7 +17,7 @@
module Data.Digest.HashTests
( tableTestCase
, testAgainstCoreutils
- , testAgainstOpenssl
+ , testAgainstOpenSSL
) where
import Data.ByteString (ByteString)
@@ -55,8 +55,8 @@ runExternal p s = do
hClose stdin -- causes process to exit
hGetContents stdout
-testAgainstOpenssl :: (ByteString -> String) -> String -> Property IO
-testAgainstOpenssl f flag =
+testAgainstOpenSSL :: (ByteString -> String) -> String -> Property IO
+testAgainstOpenSSL f flag =
over ByteString.Series.enumW8s $ \s ->
monadic $ do
theirs <- runExternal (proc "openssl" ["dgst", '-' : flag]) s