diff options
author | gwern0 <gwern0@gmail.com> | 2010-04-14 23:19:47 +0200 |
---|---|---|
committer | gwern0 <gwern0@gmail.com> | 2010-04-14 23:19:47 +0200 |
commit | 2b8c2c421294667287e2f61c0deaab7d4e682070 (patch) | |
tree | fcb57da77f059b65c65a82c2f1fe2a86fd0da9cb /tests | |
parent | 8f95e8963d48edb7c7fd8e0065226c39cff068b0 (diff) | |
download | XMonadContrib-2b8c2c421294667287e2f61c0deaab7d4e682070.tar.gz XMonadContrib-2b8c2c421294667287e2f61c0deaab7d4e682070.tar.xz XMonadContrib-2b8c2c421294667287e2f61c0deaab7d4e682070.zip |
update module imports
Ignore-this: 804bee14960064b4e4efd33d07a60a2b
darcs-hash:20100414211947-f7719-3e59a219595be3fc05fe2dfac75145dc93565d3e.gz
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_SwapWorkspaces.hs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_SwapWorkspaces.hs b/tests/test_SwapWorkspaces.hs index dc4c82c..148ab97 100644 --- a/tests/test_SwapWorkspaces.hs +++ b/tests/test_SwapWorkspaces.hs @@ -4,9 +4,9 @@ import Data.List(find,union) import Data.Maybe(fromJust) import Test.QuickCheck -import StackSet -import Properties(T, NonNegative) -import XMonad.SwapWorkspaces +import XMonad.StackSet +import Properties(T, NonNegative) -- requires tests/Properties.hs from xmonad-core +import XMonad.Actions.SwapWorkspaces -- Ensures that no "loss of information" can happen from a swap. prop_double_swap (ss :: T) (t1 :: NonNegative Int) (t2 :: NonNegative Int) = |