diff options
author | Hans Nilsson <[email protected]> | 2019-03-07 12:28:59 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2019-03-19 12:45:55 +0100 |
commit | 2e1005c7961a5de0c02ebeb8e98720472cfb53d4 (patch) | |
tree | b5c156522b7982befc3c9a77d9a232a8686d8742 /lib | |
parent | e037832aedd190c62e3a965fb7bdd44c160a86dc (diff) | |
download | otp-2e1005c7961a5de0c02ebeb8e98720472cfb53d4.tar.gz otp-2e1005c7961a5de0c02ebeb8e98720472cfb53d4.tar.bz2 otp-2e1005c7961a5de0c02ebeb8e98720472cfb53d4.zip |
crypto: Remove unused variables in test case
Diffstat (limited to 'lib')
-rw-r--r-- | lib/crypto/test/crypto_SUITE.erl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl index 241c5172c4..14e2c4a7a7 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -415,8 +415,6 @@ poly1305(Config) -> block() -> [{doc, "Test block ciphers"}]. block(Config) when is_list(Config) -> - Fips = proplists:get_bool(fips, Config), - Type = ?config(type, Config), Blocks = lazy_eval(proplists:get_value(block, Config)), lists:foreach(fun block_cipher/1, Blocks), lists:foreach(fun block_cipher/1, block_iolistify(Blocks)), @@ -443,8 +441,6 @@ api_ng() -> [{doc, "Test new api"}]. api_ng(Config) when is_list(Config) -> - Fips = proplists:get_bool(fips, Config), - Type = ?config(type, Config), Blocks = lazy_eval(proplists:get_value(block, Config, [])), Streams = lazy_eval(proplists:get_value(stream, Config, [])), lists:foreach(fun api_ng_cipher_increment/1, Blocks++Streams). |