aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-12-01 15:11:18 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-12-01 15:11:18 +0000
commitd3c498bebbbcb02d2b67c687a294676c6e2d09e9 (patch)
tree42ffe9e0c66dbba951bdaf95e7e1f4846ea43412 /tests
parent7cacb62e7b75961babba01ca4fe44bc2e552869a (diff)
downloadverismith-d3c498bebbbcb02d2b67c687a294676c6e2d09e9.tar.gz
verismith-d3c498bebbbcb02d2b67c687a294676c6e2d09e9.zip
Apply HLint rules
Diffstat (limited to 'tests')
-rw-r--r--tests/Property.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Property.hs b/tests/Property.hs
index e95ddec..88330bd 100644
--- a/tests/Property.hs
+++ b/tests/Property.hs
@@ -12,7 +12,7 @@ instance QC.Arbitrary TestGraph where
arbitrary = TestGraph <$> randomDAG 100
simpleGraph = QC.testProperty "simple graph generation" $
- \graph -> simp (graph :: TestGraph) == True
+ \graph -> simp (graph :: TestGraph)
where simp = isSimple . getGraph
propertyTests :: TestTree