blob: c43df9a9328ae6aec1cad52b6a65109d0433f575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
diff --git a/tests/hspwd.hs b/tests/hspwd.hs
index b93a7d5..f6fe2dd 100644
--- a/tests/hspwd.hs
+++ b/tests/hspwd.hs
@@ -1,5 +1,5 @@
module Main where
-import Directory ( getCurrentDirectory )
+import System.Directory ( getCurrentDirectory )
main = getCurrentDirectory >>= putStr
diff --git a/tests/trackdown-bisect-helper.hs b/tests/trackdown-bisect-helper.hs
index 5c325c4..7fcb4a4 100644
--- a/tests/trackdown-bisect-helper.hs
+++ b/tests/trackdown-bisect-helper.hs
@@ -15,8 +15,9 @@ patches with the linear implementation.
import Control.Monad
+import System.Environment
import System.IO
-import System
+import System.Process
import System.Random
import Data.List
import Control.Exception
|