aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/test/int_eval_SUITE.erl
diff options
context:
space:
mode:
authorAnthony Ramine <[email protected]>2014-05-03 20:49:08 +0200
committerAnthony Ramine <[email protected]>2014-05-03 21:06:37 +0200
commitec15a2aaab58816c728676807c0b6e61d5a5185e (patch)
treeb7e26e2843ac2060696ea12635d393f91ac5dab6 /lib/debugger/test/int_eval_SUITE.erl
parentaca0b6182b039333b4c963938878d9eecc85e5a1 (diff)
downloadotp-ec15a2aaab58816c728676807c0b6e61d5a5185e.tar.gz
otp-ec15a2aaab58816c728676807c0b6e61d5a5185e.tar.bz2
otp-ec15a2aaab58816c728676807c0b6e61d5a5185e.zip
Fix evaluation of map updates in the debugger and erl_eval
Reported-by: José Valim
Diffstat (limited to 'lib/debugger/test/int_eval_SUITE.erl')
-rw-r--r--lib/debugger/test/int_eval_SUITE.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/debugger/test/int_eval_SUITE.erl b/lib/debugger/test/int_eval_SUITE.erl
index ecbd68ab40..9d7ef238e3 100644
--- a/lib/debugger/test/int_eval_SUITE.erl
+++ b/lib/debugger/test/int_eval_SUITE.erl
@@ -294,6 +294,7 @@ stacktrace(Config) when is_list(Config) ->
maps(Config) when is_list(Config) ->
Fun = fun () -> ?IM:empty_map_update([camembert]) end,
{'EXIT',{{badarg,[camembert]},_}} = spawn_eval(Fun),
+ [#{hello := 0, price := 0}] = spawn_eval(fun () -> ?IM:update_in_fun() end),
ok.