diff options
author | Björn Gustavsson <[email protected]> | 2010-03-10 07:44:08 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-03-11 10:26:49 +0100 |
commit | 165f723f1e2d9f9719af9542aaa288c11f1758bc (patch) | |
tree | 00e5bfb0958218995ff9450e6d0446e2b04da8f5 /lib/asn1/test/test_undecoded_rest.erl | |
parent | e42725a217c2aeeab7cdebfa9f0dfc9840304fe1 (diff) | |
download | otp-165f723f1e2d9f9719af9542aaa288c11f1758bc.tar.gz otp-165f723f1e2d9f9719af9542aaa288c11f1758bc.tar.bz2 otp-165f723f1e2d9f9719af9542aaa288c11f1758bc.zip |
asn1 tests: Eliminate use of deprecated concat_binary/1
Diffstat (limited to 'lib/asn1/test/test_undecoded_rest.erl')
-rw-r--r-- | lib/asn1/test/test_undecoded_rest.erl | 2 |
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 |