aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debugger/test/int_eval_SUITE.erl
diff options
context:
space:
mode:
authorBjörn-Egil Dahlberg <[email protected]>2014-05-12 16:36:59 +0200
committerBjörn-Egil Dahlberg <[email protected]>2014-05-12 16:36:59 +0200
commitc563f5866b42a3479050241284fffc1245aebe7d (patch)
tree8289c9cd9fb5ec561a8eea25ed56f26a87234d61 /lib/debugger/test/int_eval_SUITE.erl
parent441c5a4dbc01e33db11b9497c14927da1af896f6 (diff)
parentec15a2aaab58816c728676807c0b6e61d5a5185e (diff)
downloadotp-c563f5866b42a3479050241284fffc1245aebe7d.tar.gz
otp-c563f5866b42a3479050241284fffc1245aebe7d.tar.bz2
otp-c563f5866b42a3479050241284fffc1245aebe7d.zip
Merge branch 'nox/fix-eval-map-update/OTP-11922' into maint
* nox/fix-eval-map-update/OTP-11922: Fix evaluation of map updates in the debugger and erl_eval
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.