aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2010-03-10 07:44:08 +0100
committerBjörn Gustavsson <[email protected]>2010-03-11 10:26:49 +0100
commit165f723f1e2d9f9719af9542aaa288c11f1758bc (patch)
tree00e5bfb0958218995ff9450e6d0446e2b04da8f5 /lib/asn1
parente42725a217c2aeeab7cdebfa9f0dfc9840304fe1 (diff)
downloadotp-165f723f1e2d9f9719af9542aaa288c11f1758bc.tar.gz
otp-165f723f1e2d9f9719af9542aaa288c11f1758bc.tar.bz2
otp-165f723f1e2d9f9719af9542aaa288c11f1758bc.zip
asn1 tests: Eliminate use of deprecated concat_binary/1
Diffstat (limited to 'lib/asn1')
-rw-r--r--lib/asn1/test/test_undecoded_rest.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/test_undecoded_rest.erl b/lib/asn1/test/test_undecoded_rest.erl
index 193cdd8860..900bf51a9d 100644
--- a/lib/asn1/test/test_undecoded_rest.erl
+++ b/lib/asn1/test/test_undecoded_rest.erl
@@ -42,7 +42,7 @@ test(Opt) ->
fun(B) when is_list(B) ->
B ++ [55,55,55];
(B) when is_binary(B) ->
- concat_binary([B,<<55,55,55>>])
+ iolist_to_binary([B,<<55,55,55>>])
end (Bytes),
case Opt of