aboutsummaryrefslogtreecommitdiffstats
path: root/test/TestUtils.hs
diff options
context:
space:
mode:
authorJan Tuomi <jans.tuomi@gmail.com>2022-12-09 23:52:58 +0200
committerJan Tuomi <jans.tuomi@gmail.com>2022-12-09 23:52:58 +0200
commit8baa85fd4c3607a7b3cebf2518a930a3b8a924bf (patch)
tree20b98351aca4edc8635e34b96d779bcecd9d8e19 /test/TestUtils.hs
parent8ba98a86805c886719057f9df0d5a74c58c6dabd (diff)
Add atom data type
Diffstat (limited to 'test/TestUtils.hs')
-rw-r--r--test/TestUtils.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/TestUtils.hs b/test/TestUtils.hs
index ff53310..89bc6e6 100644
--- a/test/TestUtils.hs
+++ b/test/TestUtils.hs
@@ -20,7 +20,8 @@ testRunL env = runL LState {
stateConfig = testConfig,
stateEnv = env,
stateDepth = 0,
- statePure = Impure
+ statePure = Impure,
+ stateAtomMap = M.empty
}
expectSuccessL :: Env -> LContext a -> IO (a, LState)