diff options
author | John Högberg <[email protected]> | 2019-06-19 16:09:45 +0200 |
---|---|---|
committer | John Högberg <[email protected]> | 2019-07-05 11:33:38 +0200 |
commit | b713f93fb242e330cde1f3dcb135ec9795adccde (patch) | |
tree | f409f9e2ace4dc4590ab6a8007d58169401ccf04 /lib/compiler/test | |
parent | db2ab3f206934926123c3d3acd33dd7b4c6e84db (diff) | |
download | otp-b713f93fb242e330cde1f3dcb135ec9795adccde.tar.gz otp-b713f93fb242e330cde1f3dcb135ec9795adccde.tar.bz2 otp-b713f93fb242e330cde1f3dcb135ec9795adccde.zip |
beam_validator: Clean up abstract/match context type handling
Diffstat (limited to 'lib/compiler/test')
-rw-r--r-- | lib/compiler/test/beam_validator_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compiler/test/beam_validator_SUITE.erl b/lib/compiler/test/beam_validator_SUITE.erl index 35dda9cc01..d49d5af9c3 100644 --- a/lib/compiler/test/beam_validator_SUITE.erl +++ b/lib/compiler/test/beam_validator_SUITE.erl @@ -520,9 +520,9 @@ bad_tuples(Config) -> {{bad_tuples,long,2}, {{put,{atom,too_long}},8,not_building_a_tuple}}, {{bad_tuples,self_referential,1}, - {{put,{x,1}},7,{tuple_in_progress,{x,1}}}}, + {{put,{x,1}},7,{unfinished_tuple,{x,1}}}}, {{bad_tuples,short,1}, - {{move,{x,1},{x,0}},7,{tuple_in_progress,{x,1}}}}] = Errors, + {{move,{x,1},{x,0}},7,{unfinished_tuple,{x,1}}}}] = Errors, ok. |