Fix broken unit tests due to data type renaming
This commit is contained in:
parent
ff7aa0ed56
commit
0989b4cab3
2 changed files with 5 additions and 5 deletions
|
@ -3,14 +3,14 @@ module Mock.Blog.URL (
|
|||
, simple
|
||||
) where
|
||||
|
||||
import Blog.URL (URL(..))
|
||||
import Blog.URL (URLs(..))
|
||||
|
||||
simple :: URL
|
||||
simple = URL {
|
||||
simple :: URLs
|
||||
simple = URLs {
|
||||
cards = Just "https://test.net"
|
||||
, comments = Nothing
|
||||
, rss = Nothing
|
||||
}
|
||||
|
||||
noCards :: URL
|
||||
noCards :: URLs
|
||||
noCards = simple {cards = Nothing}
|
||||
|
|
|
@ -2,7 +2,7 @@ module XML.Card.Output (
|
|||
test
|
||||
) where
|
||||
|
||||
import Blog (Blog(..), URL(..))
|
||||
import Blog (Blog(..), URLs(..))
|
||||
import Control.Monad.IO.Class (MonadIO(..))
|
||||
import Control.Monad.Reader (asks, runReaderT)
|
||||
import qualified Data.Text.Lazy.IO as Lazy (readFile)
|
||||
|
|
Loading…
Reference in a new issue