From 13fbf04854093f8d77693f9280de4c1d55c7293c Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 19 Apr 2019 10:32:54 +0100 Subject: Fix compiling on CI --- test/Property.hs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/Property.hs') diff --git a/test/Property.hs b/test/Property.hs index 06c2e86..f7c6865 100644 --- a/test/Property.hs +++ b/test/Property.hs @@ -3,6 +3,9 @@ {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE TypeApplications #-} +{-# OPTIONS_GHC -Wno-unused-top-binds #-} +{-# OPTIONS_GHC -Wno-unused-imports #-} + module Property ( propertyTests ) @@ -11,8 +14,7 @@ where import Data.Either (either, isRight) import qualified Data.Graph.Inductive as G import Data.Text (Text) -import qualified Data.Text as T -import Hedgehog (Gen, MonadGen, Property, (===)) +import Hedgehog (Gen, Property, (===)) import qualified Hedgehog as Hog import Hedgehog.Function (Arg, Vary) import qualified Hedgehog.Function as Hog -- cgit