Skip to content

Commit be75b77

Browse files
author
Tim Watson
committed
cosmetic
1 parent 96f28d3 commit be75b77

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

distributed-process/tests/TestStats.hs

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,28 @@
22
{-# OPTIONS_GHC -fno-warn-orphans #-}
33
module Main where
44

5-
import Prelude hiding (catch, log)
6-
import Test.Framework
7-
( Test
8-
, defaultMain
9-
, testGroup
5+
import Control.Concurrent.MVar
6+
( MVar
7+
, newEmptyMVar
8+
, putMVar
9+
, takeMVar
1010
)
11-
import Network.Transport.TCP
1211
import Control.Distributed.Process
1312
import Control.Distributed.Process.Node
1413
( forkProcess
1514
, newLocalNode
1615
, initRemoteTable
1716
, closeLocalNode
1817
, LocalNode)
19-
import Control.Concurrent.MVar
20-
( MVar
21-
, newEmptyMVar
22-
, putMVar
23-
, takeMVar
24-
)
2518
import Data.Binary()
2619
import Data.Typeable()
20+
import Network.Transport.TCP
21+
import Prelude hiding (catch, log)
22+
import Test.Framework
23+
( Test
24+
, defaultMain
25+
, testGroup
26+
)
2727
import Test.HUnit (Assertion)
2828
import Test.HUnit.Base (assertBool)
2929
import Test.Framework.Providers.HUnit (testCase)

0 commit comments

Comments
 (0)