Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/data61/fp-course
Browse files Browse the repository at this point in the history
  • Loading branch information
pnas committed Mar 28, 2019
2 parents a679653 + f4593df commit ee79acb
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 0 additions & 2 deletions test/Course/ComonadTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ module Course.ComonadTest
)
where

import Data.String (fromString)

import Test.Course.Mini (courseTest)
import Test.Mini (MiniTestTree, testCase, testGroup, (@?=))

Expand Down
2 changes: 1 addition & 1 deletion test/Course/ParserTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import Course.Core
import Course.Functor ((<$>))
import Course.List (List ((:.), Nil))
import Course.Monad ((=<<))
import Course.Optional (Optional (Empty, Full))
import Course.Optional (Optional (Full))
import Course.Parser
import Course.Person (Person (Person))

Expand Down
2 changes: 1 addition & 1 deletion test/Course/StateTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import Course.List (List (..), filter, flatMap, hlist, length,
listh, span, (++))
import Course.Monad
import Course.Optional (Optional (Empty, Full))
import Course.State (State (State), distinct, eval, exec, findM,
import Course.State (State (State), distinct, findM,
firstRepeat, get, isHappy, put, runState)

test_State :: MiniTestTree
Expand Down
2 changes: 1 addition & 1 deletion test/Course/TraversableTest.hs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Course.Compose (Compose (Compose))
import Course.Core
import Course.ExactlyOne (ExactlyOne (ExactlyOne))
import Course.Functor
import Course.List (List ((:.), Nil), listh)
import Course.List (List (Nil), listh)
import Course.Optional (Optional (Empty, Full))
import Course.Traversable

Expand Down
1 change: 1 addition & 0 deletions test/Test/Course/Mini.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
{-# LANGUAGE ImplicitPrelude #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}

module Test.Course.Mini where

Expand Down
2 changes: 1 addition & 1 deletion test/Test/Mini.hs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
-- module with a type and instance for running the test suite with Tasty.
module Test.Mini where

import Data.String (IsString, fromString)
import Data.String (IsString)

type MiniTestTree =
forall name assertion t g.
Expand Down
1 change: 1 addition & 0 deletions test/TestLoader.hs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE OverloadedStrings #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}

module TestLoader
( Optional.test_Optional
Expand Down

0 comments on commit ee79acb

Please sign in to comment.