Improve indentation according to pylint
Signed-off-by: Joe Subbiani <joe.subbiani@arm.com>
This commit is contained in:
parent
54110b3b6f
commit
49d57bcf19
1 changed files with 15 additions and 15 deletions
|
@ -41,21 +41,21 @@ class TestTranslateCiphers(unittest.TestCase):
|
||||||
that exercise each step of the translate functions
|
that exercise each step of the translate functions
|
||||||
"""
|
"""
|
||||||
ciphers = [
|
ciphers = [
|
||||||
("TLS-ECDHE-ECDSA-WITH-NULL-SHA",
|
("TLS-ECDHE-ECDSA-WITH-NULL-SHA",
|
||||||
"+ECDHE-ECDSA:+NULL:+SHA1",
|
"+ECDHE-ECDSA:+NULL:+SHA1",
|
||||||
"ECDHE-ECDSA-NULL-SHA"),
|
"ECDHE-ECDSA-NULL-SHA"),
|
||||||
("TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256",
|
("TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256",
|
||||||
"+ECDHE-ECDSA:+AES-128-GCM:+AEAD",
|
"+ECDHE-ECDSA:+AES-128-GCM:+AEAD",
|
||||||
"ECDHE-ECDSA-AES128-GCM-SHA256"),
|
"ECDHE-ECDSA-AES128-GCM-SHA256"),
|
||||||
("TLS-DHE-RSA-WITH-3DES-EDE-CBC-SHA",
|
("TLS-DHE-RSA-WITH-3DES-EDE-CBC-SHA",
|
||||||
"+DHE-RSA:+3DES-CBC:+SHA1",
|
"+DHE-RSA:+3DES-CBC:+SHA1",
|
||||||
"EDH-RSA-DES-CBC3-SHA"),
|
"EDH-RSA-DES-CBC3-SHA"),
|
||||||
("TLS-ECDHE-ECDSA-WITH-CHACHA20-POLY1305-SHA256",
|
("TLS-ECDHE-ECDSA-WITH-CHACHA20-POLY1305-SHA256",
|
||||||
None,
|
None,
|
||||||
"ECDHE-ECDSA-CHACHA20-POLY1305"),
|
"ECDHE-ECDSA-CHACHA20-POLY1305"),
|
||||||
("TLS-ECDHE-ECDSA-WITH-AES-128-CCM",
|
("TLS-ECDHE-ECDSA-WITH-AES-128-CCM",
|
||||||
"+ECDHE-ECDSA:+AES-128-CCM:+AEAD",
|
"+ECDHE-ECDSA:+AES-128-CCM:+AEAD",
|
||||||
None),
|
None),
|
||||||
]
|
]
|
||||||
|
|
||||||
for m, g_exp, o_exp in ciphers:
|
for m, g_exp, o_exp in ciphers:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue