diff options
author | Hans Nilsson <[email protected]> | 2019-04-17 13:36:12 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2019-04-17 16:37:12 +0200 |
commit | 7d67a9e83afe2fe917f5faadba86d3f482218804 (patch) | |
tree | 81e2b51baaf4895d54075debf9c2f9e9eeebfd16 | |
parent | 2587405769912b165b4c97d827411db09d7a7882 (diff) | |
download | otp-7d67a9e83afe2fe917f5faadba86d3f482218804.tar.gz otp-7d67a9e83afe2fe917f5faadba86d3f482218804.tar.bz2 otp-7d67a9e83afe2fe917f5faadba86d3f482218804.zip |
crypto: Remove unused var warning in tests
-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 880fd7ab0b..0823f78a64 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -478,7 +478,7 @@ poly1305(Config) -> %%-------------------------------------------------------------------- no_poly1305() -> [{doc, "Test disabled poly1305 function"}]. -no_poly1305(Config) -> +no_poly1305(_Config) -> Key = <<133,214,190,120,87,85,109,51,127,68,82,254,66,213,6,168,1, 3,128,138,251,13,178,253,74,191,246,175,65,73,245,27>>, Txt = <<"Cryptographic Forum Research Group">>, |