aboutsummaryrefslogtreecommitdiffstats
path: root/src/Test/VeriFuzz/Internal
diff options
context:
space:
mode:
Diffstat (limited to 'src/Test/VeriFuzz/Internal')
-rw-r--r--src/Test/VeriFuzz/Internal/Gen.hs4
-rw-r--r--src/Test/VeriFuzz/Internal/Shared.hs4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Test/VeriFuzz/Internal/Gen.hs b/src/Test/VeriFuzz/Internal/Gen.hs
index fdd958d..be275dd 100644
--- a/src/Test/VeriFuzz/Internal/Gen.hs
+++ b/src/Test/VeriFuzz/Internal/Gen.hs
@@ -1,5 +1,5 @@
{-|
-Module : Test.VeriFuzz.Internal.Gen
+Module : VeriFuzz.Internal.Gen
Description : Internal helpers for generation.
Copyright : (c) 2018-2019, Yann Herklotz Grave
License : BSD-3
@@ -10,7 +10,7 @@ Portability : POSIX
Internal helpers for generation.
-}
-module Test.VeriFuzz.Internal.Gen where
+module VeriFuzz.Internal.Gen where
import Data.Graph.Inductive (Graph, Node)
import qualified Data.Graph.Inductive as G
diff --git a/src/Test/VeriFuzz/Internal/Shared.hs b/src/Test/VeriFuzz/Internal/Shared.hs
index 54abb53..c7d2760 100644
--- a/src/Test/VeriFuzz/Internal/Shared.hs
+++ b/src/Test/VeriFuzz/Internal/Shared.hs
@@ -1,5 +1,5 @@
{-|
-Module : Test.VeriFuzz.Internal.Shared
+Module : VeriFuzz.Internal.Shared
Description : Shared high level code used in the other modules internally.
Copyright : (c) 2018-2019, Yann Herklotz Grave
License : BSD-3
@@ -10,7 +10,7 @@ Portability : POSIX
Shared high level code used in the other modules internally.
-}
-module Test.VeriFuzz.Internal.Shared where
+module VeriFuzz.Internal.Shared where
-- | Converts unsafe list functions in the Prelude to a safe version.
safe :: ([a] -> b) -> [a] -> Maybe b