aboutsummaryrefslogtreecommitdiffstats
path: root/tests/utils.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-06-27 17:19:30 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-06-27 17:19:30 -0400
commitece3872d095c303e882fc74384dc34c37b250511 (patch)
tree9120da0257223dfcc10c1f97b36ef5b14f20625c /tests/utils.py
parent6e355b5dede37e9e344a1fbb210a4838ead6a3ec (diff)
downloadcryptography-ece3872d095c303e882fc74384dc34c37b250511.tar.gz
cryptography-ece3872d095c303e882fc74384dc34c37b250511.tar.bz2
cryptography-ece3872d095c303e882fc74384dc34c37b250511.zip
Simplified code in the test loaders and improved branch coverage in the x509 tests
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/utils.py b/tests/utils.py
index 46d93646..5a3f475b 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -396,10 +396,6 @@ def load_fips_dsa_key_pair_vectors(vector_data):
continue
elif line.startswith("[mod = L=3072"):
continue
-
- if not reading_key_data:
- continue
-
elif reading_key_data:
if line.startswith("P"):
vectors.append({'p': int(line.split("=")[1], 16)})