summaryrefslogtreecommitdiff
path: root/tests/Data/Torrent
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2014-04-04 21:44:18 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2014-04-04 21:44:18 +0400
commit052bed30a3d83aa8fb7b8b42509ad96f573439af (patch)
tree106b44c06226595870c3bf54f890824eec2b7f0e /tests/Data/Torrent
parent88ef120511caae5ed74a48a87617b43aec4b7f76 (diff)
Move HashList to Torrent module
Diffstat (limited to 'tests/Data/Torrent')
-rw-r--r--tests/Data/Torrent/MetainfoSpec.hs1
-rw-r--r--tests/Data/Torrent/PieceSpec.hs2
2 files changed, 1 insertions, 2 deletions
diff --git a/tests/Data/Torrent/MetainfoSpec.hs b/tests/Data/Torrent/MetainfoSpec.hs
index 537b3f99..1a8f97c7 100644
--- a/tests/Data/Torrent/MetainfoSpec.hs
+++ b/tests/Data/Torrent/MetainfoSpec.hs
@@ -14,7 +14,6 @@ import Test.QuickCheck
14import Test.QuickCheck.Instances () 14import Test.QuickCheck.Instances ()
15 15
16import Data.Torrent 16import Data.Torrent
17import Data.Torrent.Piece
18import Data.Torrent.LayoutSpec () 17import Data.Torrent.LayoutSpec ()
19import Network.BitTorrent.Core.NodeInfoSpec () 18import Network.BitTorrent.Core.NodeInfoSpec ()
20 19
diff --git a/tests/Data/Torrent/PieceSpec.hs b/tests/Data/Torrent/PieceSpec.hs
index ef1f2938..d3933396 100644
--- a/tests/Data/Torrent/PieceSpec.hs
+++ b/tests/Data/Torrent/PieceSpec.hs
@@ -3,7 +3,7 @@ module Data.Torrent.PieceSpec (spec) where
3import Control.Applicative 3import Control.Applicative
4import Test.Hspec 4import Test.Hspec
5import Test.QuickCheck 5import Test.QuickCheck
6import Data.Torrent.Piece 6import Data.Torrent
7 7
8 8
9instance Arbitrary a => Arbitrary (Piece a) where 9instance Arbitrary a => Arbitrary (Piece a) where