aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Properties.hs
diff options
context:
space:
mode:
authorDon Stewart <dons@cse.unsw.edu.au>2007-03-09 05:17:07 +0100
committerDon Stewart <dons@cse.unsw.edu.au>2007-03-09 05:17:07 +0100
commitb4d12773dbfc26aedf4ce8ed76938e65238a1f1d (patch)
tree19858fbf18a84e271bcf7f90e817ecc1d9480ff2 /tests/Properties.hs
parent274491a1220afa944e76ee03b6ab6446267109f5 (diff)
downloadxmonad-b4d12773dbfc26aedf4ce8ed76938e65238a1f1d.tar.gz
xmonad-b4d12773dbfc26aedf4ce8ed76938e65238a1f1d.tar.xz
xmonad-b4d12773dbfc26aedf4ce8ed76938e65238a1f1d.zip
simplify StackSet api even further (-15 loc)
darcs-hash:20070309041707-9c5c1-3c9ef62c25f49b9025f137f73c8d25438a640ff4.gz
Diffstat (limited to 'tests/Properties.hs')
-rw-r--r--tests/Properties.hs4
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/Properties.hs b/tests/Properties.hs
index c36562b..5185314 100644
--- a/tests/Properties.hs
+++ b/tests/Properties.hs
@@ -15,9 +15,7 @@ import Data.List (sort,group,sort,intersperse)
-- | Height of stack 'n'
height :: Int -> StackSet a -> Int
-height i w = case index i w of
- Nothing -> error $ "height: i out of range: " ++ show i
- Just ss -> length ss
+height i w = length (index i w)
-- build (non-empty) StackSets with between 1 and 100 stacks
instance (Ord a, Arbitrary a) => Arbitrary (StackSet a) where