aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-12-01 15:12:06 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-12-01 15:12:06 +0000
commitaf11f75f296723050f2c945a80caeb5df490d93d (patch)
treedc4169e4f4c5d3f7586b1ddfb15133d56cd079c9 /src
parent9b3405316b630fc96d6c4980c7f227c1fd005e6e (diff)
downloadverismith-af11f75f296723050f2c945a80caeb5df490d93d.tar.gz
verismith-af11f75f296723050f2c945a80caeb5df490d93d.zip
[lint] Remove unnecessary '$'
Diffstat (limited to 'src')
-rw-r--r--src/Test/VeriFuzz/Graph/Random.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Test/VeriFuzz/Graph/Random.hs b/src/Test/VeriFuzz/Graph/Random.hs
index 348c5f6..e87036c 100644
--- a/src/Test/VeriFuzz/Graph/Random.hs
+++ b/src/Test/VeriFuzz/Graph/Random.hs
@@ -18,7 +18,7 @@ randomDAG :: (Arbitrary l, Arbitrary e, Graph gr)
-> Gen (gr l e) -- ^ The generated graph. It uses Arbitrary to
-- generate random instances of each node
randomDAG n = do
- list <- infiniteListOf $ arbitrary
+ list <- infiniteListOf arbitrary
l <- infiniteListOf $ arbitraryEdge n
return . mkGraph (nodes list) $ take (10*n) l
where