aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/VeriFuzz/Gen.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VeriFuzz/Gen.hs b/src/VeriFuzz/Gen.hs
index 56d48bf..733f956 100644
--- a/src/VeriFuzz/Gen.hs
+++ b/src/VeriFuzz/Gen.hs
@@ -32,7 +32,7 @@ randomAssigns ids = random ids . ContAssign <$> ids
randomMod :: Gen ModDecl
randomMod = do
let ids = Identifier . ("w"<>) . T.pack . show <$> [1..100]
- _ <- sequence $ randomAssigns ids
+ sequence_ $ randomAssigns ids
return $ ModDecl "" [] [] []
fromGraph :: Gen ModDecl