aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-12-27 10:38:02 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-12-27 10:38:02 +0100
commita53cf08249ec1ca6cc9d9e87bd031e0022cd9b48 (patch)
treee76a39f9856eb8ae6b8862bf8952b0cc83119830 /src
parentda918a74783557820d0262482f1df8b3fe2e7708 (diff)
downloadverismith-a53cf08249ec1ca6cc9d9e87bd031e0022cd9b48.tar.gz
verismith-a53cf08249ec1ca6cc9d9e87bd031e0022cd9b48.zip
Small style change
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 a31e374..1bedf7f 100644
--- a/src/Test/VeriFuzz/Graph/Random.hs
+++ b/src/Test/VeriFuzz/Graph/Random.hs
@@ -25,7 +25,7 @@ arbitraryEdge n = do
z <- arbitrary
return (x, y, z)
where
- with = suchThat . resize n $ arbitrary
+ with = suchThat $ resize n arbitrary
-- | Gen instance for a random acyclic DAG.
randomDAG :: (Arbitrary l, Arbitrary e, Graph gr)