diff options
author | David Waern <david.waern@gmail.com> | 2011-11-24 23:55:36 +0100 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2011-11-24 23:55:36 +0100 |
commit | 4d457ae5f906052b67e4339dde6e828f1f9044cb (patch) | |
tree | 0b35a4ca4ecf71cfe01dff539129a37c7abfd8f0 /tests | |
parent | 2927dd725ee11acb04133ddefed5038847f6737f (diff) |
Avoid haskell98 dependency in test
Diffstat (limited to 'tests')
-rw-r--r-- | tests/html-tests/tests/Hash.hs | 2 |
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@. |