diff options
-rw-r--r-- | tests/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py index 5a3f475b..8be5c1fa 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -396,7 +396,8 @@ def load_fips_dsa_key_pair_vectors(vector_data): continue elif line.startswith("[mod = L=3072"): continue - elif reading_key_data: + + if reading_key_data: if line.startswith("P"): vectors.append({'p': int(line.split("=")[1], 16)}) elif line.startswith("Q"): |