diff options
author | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-04 21:44:18 +0400 |
---|---|---|
committer | Sam Truzjan <pxqr.sta@gmail.com> | 2014-04-04 21:44:18 +0400 |
commit | 052bed30a3d83aa8fb7b8b42509ad96f573439af (patch) | |
tree | 106b44c06226595870c3bf54f890824eec2b7f0e /tests/Data | |
parent | 88ef120511caae5ed74a48a87617b43aec4b7f76 (diff) |
Move HashList to Torrent module
Diffstat (limited to 'tests/Data')
-rw-r--r-- | tests/Data/Torrent/MetainfoSpec.hs | 1 | ||||
-rw-r--r-- | tests/Data/Torrent/PieceSpec.hs | 2 |
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 | |||
14 | import Test.QuickCheck.Instances () | 14 | import Test.QuickCheck.Instances () |
15 | 15 | ||
16 | import Data.Torrent | 16 | import Data.Torrent |
17 | import Data.Torrent.Piece | ||
18 | import Data.Torrent.LayoutSpec () | 17 | import Data.Torrent.LayoutSpec () |
19 | import Network.BitTorrent.Core.NodeInfoSpec () | 18 | import 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 | |||
3 | import Control.Applicative | 3 | import Control.Applicative |
4 | import Test.Hspec | 4 | import Test.Hspec |
5 | import Test.QuickCheck | 5 | import Test.QuickCheck |
6 | import Data.Torrent.Piece | 6 | import Data.Torrent |
7 | 7 | ||
8 | 8 | ||
9 | instance Arbitrary a => Arbitrary (Piece a) where | 9 | instance Arbitrary a => Arbitrary (Piece a) where |