aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2019-07-23 22:05:32 +0200
committerYann Herklotz <git@yannherklotz.com>2019-07-23 22:05:41 +0200
commit992e91427fccff43f8ab1944131b8f62f9328f0d (patch)
tree1108e017b2c172da02dde8d07d17f0eda7bc23f9 /test
parent24382ce10ed53724ad2d097a7ed2397806be3e67 (diff)
downloadverismith-992e91427fccff43f8ab1944131b8f62f9328f0d.tar.gz
verismith-992e91427fccff43f8ab1944131b8f62f9328f0d.zip
Add new maintainer email
Diffstat (limited to 'test')
-rw-r--r--test/Parser.hs15
-rw-r--r--test/Reduce.hs4
2 files changed, 7 insertions, 12 deletions
diff --git a/test/Parser.hs b/test/Parser.hs
index 84f1906..d300d8a 100644
--- a/test/Parser.hs
+++ b/test/Parser.hs
@@ -3,7 +3,7 @@ Module : Parser
Description : Test the parser.
Copyright : (c) 2019, Yann Herklotz Grave
License : GPL-3
-Maintainer : ymherklotz [at] gmail [dot] com
+Maintainer : yann [at] yannherklotz [dot] com
Stability : experimental
Portability : POSIX
@@ -17,15 +17,10 @@ module Parser
where
import Control.Lens
-import Data.Either ( either
- , isRight
- )
-import Hedgehog ( Gen
- , Property
- , (===)
- )
-import qualified Hedgehog as Hog
-import qualified Hedgehog.Gen as Hog
+import Data.Either (either, isRight)
+import Hedgehog (Gen, Property, (===))
+import qualified Hedgehog as Hog
+import qualified Hedgehog.Gen as Hog
import Test.Tasty
import Test.Tasty.Hedgehog
import Test.Tasty.HUnit
diff --git a/test/Reduce.hs b/test/Reduce.hs
index bc47d94..722ddea 100644
--- a/test/Reduce.hs
+++ b/test/Reduce.hs
@@ -3,7 +3,7 @@ Module : Reduce
Description : Test reduction.
Copyright : (c) 2019, Yann Herklotz Grave
License : GPL-3
-Maintainer : ymherklotz [at] gmail [dot] com
+Maintainer : yann [at] yannherklotz [dot] com
Stability : experimental
Portability : POSIX
@@ -17,7 +17,7 @@ module Reduce
)
where
-import Data.List ( (\\) )
+import Data.List ((\\))
import Test.Tasty
import Test.Tasty.HUnit
import VeriFuzz