aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/test/beam_types_SUITE.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compiler/test/beam_types_SUITE.erl')
-rw-r--r--lib/compiler/test/beam_types_SUITE.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/compiler/test/beam_types_SUITE.erl b/lib/compiler/test/beam_types_SUITE.erl
index 66fd517ec0..297bd4026e 100644
--- a/lib/compiler/test/beam_types_SUITE.erl
+++ b/lib/compiler/test/beam_types_SUITE.erl
@@ -55,11 +55,11 @@ commutativity(Config) when is_list(Config) ->
binary_consistency(Config) when is_list(Config) ->
%% These binaries should meet into {binary,12} as that's the best common
%% unit for both types.
- A = {binary, 4},
- B = {binary, 6},
+ A = #t_bitstring{unit=4},
+ B = #t_bitstring{unit=6},
- {binary, 12} = beam_types:meet(A, B),
- {binary, 2} = beam_types:join(A, B),
+ #t_bitstring{unit=12} = beam_types:meet(A, B),
+ #t_bitstring{unit=2} = beam_types:join(A, B),
A = beam_types:meet(A, beam_types:join(A, B)),
A = beam_types:join(A, beam_types:meet(A, B)),