aboutsummaryrefslogtreecommitdiff
path: root/tests/Data/DigestTests.hs
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2018-04-28 15:14:57 -0700
committerGravatar Benjamin Barenblat <bbaren@google.com>2018-04-28 15:14:57 -0700
commit6655ceffe46a642c9379c4327dd9c84e6bfd6977 (patch)
tree3951d9e2a226694d08793ae8dedbdf30ecde1ab1 /tests/Data/DigestTests.hs
parent8fc0b121543b742f56f83c9eb74885e04d104778 (diff)
Formatting pass
I don’t always like the output hindent gives, so reformat the project to be a bit closer to what you see in published Haskell books and the like.
Diffstat (limited to 'tests/Data/DigestTests.hs')
-rw-r--r--tests/Data/DigestTests.hs16
1 files changed, 6 insertions, 10 deletions
diff --git a/tests/Data/DigestTests.hs b/tests/Data/DigestTests.hs
index a407f62..daef282 100644
--- a/tests/Data/DigestTests.hs
+++ b/tests/Data/DigestTests.hs
@@ -12,9 +12,7 @@
-- License for the specific language governing permissions and limitations under
-- the License.
-module Data.DigestTests
- ( tests
- ) where
+module Data.DigestTests (tests) where
import Test.Tasty (TestTree, testGroup)
@@ -23,10 +21,8 @@ import qualified Data.Digest.Sha1Tests
import qualified Data.Digest.Sha2Tests
tests :: TestTree
-tests =
- testGroup
- "Data.Digest"
- [ Data.Digest.Md5Tests.tests
- , Data.Digest.Sha1Tests.tests
- , Data.Digest.Sha2Tests.tests
- ]
+tests = testGroup "Data.Digest"
+ [ Data.Digest.Md5Tests.tests
+ , Data.Digest.Sha1Tests.tests
+ , Data.Digest.Sha2Tests.tests
+ ]