From 081a14326e221c04e9306e0c017dd047e0e5283d Mon Sep 17 00:00:00 2001 From: Vincent Hanquez Date: Thu, 19 Nov 2015 14:23:45 +0000 Subject: [PATCH] [tests] remove duplicated symbol in BCrypt --- tests/BCrypt.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/BCrypt.hs b/tests/BCrypt.hs index eb0a551..1f5e247 100644 --- a/tests/BCrypt.hs +++ b/tests/BCrypt.hs @@ -60,7 +60,7 @@ expected = , ("$2a$06$.rCVZVOThsIa97pEDOxvGuRRgzG64bvtJ0938xuqzv18d3ZpQhstC", "abcdefghijklmnopqrstuvwxyz") ] -makeKATs expected = concatMap maketest (zip3 is passwords hashes) +makeKATs = concatMap maketest (zip3 is passwords hashes) where is :: [Int] is = [1..] @@ -73,5 +73,5 @@ makeKATs expected = concatMap maketest (zip3 is passwords hashes) ] tests = testGroup "bcrypt" - [ testGroup "KATs" (makeKATs expected) + [ testGroup "KATs" makeKATs ]