aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Tests.hs')
-rw-r--r--tests/Tests.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Tests.hs b/tests/Tests.hs
index 6555cf3..719d0ce 100644
--- a/tests/Tests.hs
+++ b/tests/Tests.hs
@@ -18,13 +18,15 @@ module Main
import Test.Tasty (defaultMain, testGroup)
+import qualified Codec.Crypto.EncryptionTests
import qualified Codec.Crypto.HKDFTests
import qualified Data.DigestTests
import qualified Data.HMACTests
main :: IO ()
main = defaultMain $ testGroup "btls"
- [ Codec.Crypto.HKDFTests.tests
+ [ Codec.Crypto.EncryptionTests.tests
+ , Codec.Crypto.HKDFTests.tests
, Data.DigestTests.tests
, Data.HMACTests.tests
]