aboutsummaryrefslogtreecommitdiff
path: root/tests/html-tests
diff options
context:
space:
mode:
authorDavid Waern <david.waern@gmail.com>2011-11-24 23:55:36 +0100
committerDavid Waern <david.waern@gmail.com>2011-11-24 23:55:36 +0100
commit4d457ae5f906052b67e4339dde6e828f1f9044cb (patch)
tree0b35a4ca4ecf71cfe01dff539129a37c7abfd8f0 /tests/html-tests
parent2927dd725ee11acb04133ddefed5038847f6737f (diff)
Avoid haskell98 dependency in test
Diffstat (limited to 'tests/html-tests')
-rw-r--r--tests/html-tests/tests/Hash.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/html-tests/tests/Hash.hs b/tests/html-tests/tests/Hash.hs
index 7d6506f9..343b69e9 100644
--- a/tests/html-tests/tests/Hash.hs
+++ b/tests/html-tests/tests/Hash.hs
@@ -13,7 +13,7 @@ module Hash (
Hash(..),
) where
-import Array
+import Data.Array
import Prelude hiding (lookup)
-- | A hash table with keys of type @key@ and values of type @val@.