aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests.hs
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2018-04-28 15:26:04 -0700
committerGravatar Benjamin Barenblat <bbaren@google.com>2018-04-28 15:26:04 -0700
commit22b190b55afcbbd2e014339ead081a552fea4287 (patch)
tree9b2ecd376d3430b51a795c6f9c6e62c84066d3b8 /tests/Tests.hs
parent403466452dcda68763b82f409310fc41a3a6a9ab (diff)
Switch initialism style to follow the rest of the Haskell world
Diffstat (limited to 'tests/Tests.hs')
-rw-r--r--tests/Tests.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Tests.hs b/tests/Tests.hs
index 58e9be6..ee38f2a 100644
--- a/tests/Tests.hs
+++ b/tests/Tests.hs
@@ -19,10 +19,10 @@ module Main
import Test.Tasty (defaultMain, testGroup)
import qualified Data.DigestTests
-import qualified Data.HmacTests
+import qualified Data.HMACTests
main :: IO ()
main = defaultMain $ testGroup "btls"
[ Data.DigestTests.tests
- , Data.HmacTests.tests
+ , Data.HMACTests.tests
]