diff options
author | Erlang/OTP <[email protected]> | 2010-04-19 14:23:53 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-04-19 14:23:53 +0000 |
commit | 09ca69e2247860fb5494297279c8819a34777cc6 (patch) | |
tree | 1f3c56958c2d4d497fbc2a8977c9dca19176e7eb /lib/crypto/test/crypto_SUITE.erl | |
parent | bb6b926e2d925a31478153c628c8f161eb898f6c (diff) | |
parent | 14035712097e634a4a7e7851d88fe8b6f8703708 (diff) | |
download | otp-09ca69e2247860fb5494297279c8819a34777cc6.tar.gz otp-09ca69e2247860fb5494297279c8819a34777cc6.tar.bz2 otp-09ca69e2247860fb5494297279c8819a34777cc6.zip |
Merge branch 'bg/deprecations' into dev
* bg/deprecations:
test suites: Remove incidental use of deprecated concat_binary/1
Postpone removal of concat_binary/1
Remove deprecated lists:flat_length/1
OTP-8584 bg/deprecations
Diffstat (limited to 'lib/crypto/test/crypto_SUITE.erl')
-rw-r--r-- | lib/crypto/test/crypto_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl index 8467ff2274..ee0e5c0dae 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -441,7 +441,7 @@ des_cbc_iter(Config) when is_list(Config) -> ?line Cipher1 = crypto:des_cbc_encrypt(Key, IVec, Plain1), ?line IVec2 = crypto:des_cbc_ivec(Cipher1), ?line Cipher2 = crypto:des_cbc_encrypt(Key, IVec2, Plain2), - ?line Cipher = concat_binary([Cipher1, Cipher2]), + ?line Cipher = list_to_binary([Cipher1, Cipher2]), ?line m(Cipher, hexstr2bin("e5c7cdde872bf27c43e934008c389c" "0f683788499a7c05f6")). |