From 244d5fdada17fdc189fbe5f5e213842e27cfa2e3 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Wed, 30 Apr 2014 16:00:06 -0500 Subject: fix pep8 violation --- tests/hazmat/primitives/test_dsa.py | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'tests/hazmat/primitives/test_dsa.py') diff --git a/tests/hazmat/primitives/test_dsa.py b/tests/hazmat/primitives/test_dsa.py index 3e37fdf4..5a3c232c 100644 --- a/tests/hazmat/primitives/test_dsa.py +++ b/tests/hazmat/primitives/test_dsa.py @@ -746,10 +746,8 @@ class TestDSAVerification(object): algorithm = algorithms_dict[digest_algorithm] - if ( - backend.dsa_parameters_supported(vector['p'], vector['q']) - and backend.dsa_hash_supported(algorithm) - ): + if (backend.dsa_parameters_supported(vector['p'], vector['q']) + and backend.dsa_hash_supported(algorithm)): sig_buf = backend.dsa_signature_from_components( vector['r'], vector['s']) @@ -790,10 +788,8 @@ class TestDSAVerification(object): algorithm = algorithms_dict[digest_algorithm] - if ( - backend.dsa_parameters_supported(vector['p'], vector['q']) - and backend.dsa_hash_supported(algorithm) - ): + if (backend.dsa_parameters_supported(vector['p'], vector['q']) + and backend.dsa_hash_supported(algorithm)): sig_buf = backend.dsa_signature_from_components( vector['r'], vector['s']) -- cgit v1.2.3