summaryrefslogtreecommitdiff
path: root/tests/Network/BitTorrent/Tracker/SessionSpec.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Network/BitTorrent/Tracker/SessionSpec.hs')
-rw-r--r--tests/Network/BitTorrent/Tracker/SessionSpec.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Network/BitTorrent/Tracker/SessionSpec.hs b/tests/Network/BitTorrent/Tracker/SessionSpec.hs
index 2c471752..72936ee7 100644
--- a/tests/Network/BitTorrent/Tracker/SessionSpec.hs
+++ b/tests/Network/BitTorrent/Tracker/SessionSpec.hs
@@ -16,11 +16,11 @@ testSession :: Bool -> (Manager -> Session -> IO ()) -> IO ()
16testSession runEmpty action = do 16testSession runEmpty action = do
17 t <- getTestTorrent 17 t <- getTestTorrent
18 withManager def def $ \ m -> do 18 withManager def def $ \ m -> do
19 withSession (idInfoHash (tInfoDict t)) (trackerList t) $ \ s -> 19 withSession m (idInfoHash (tInfoDict t)) (trackerList t) $ \ s ->
20 action m s 20 action m s
21 21
22 when runEmpty $ do 22 when runEmpty $ do
23 withSession (idInfoHash (tInfoDict t)) def $ \ s -> 23 withSession m (idInfoHash (tInfoDict t)) def $ \ s ->
24 action m s 24 action m s
25 25
26spec :: Spec 26spec :: Spec