Skip to content

Commit

Permalink
mikeo r4 automation
Browse files Browse the repository at this point in the history
  • Loading branch information
ounsworth committed Nov 2, 2024
1 parent a5910eb commit c40228e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pqc_report_writer_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def passedAllVerifiers(generator, oid, algorithmVerificationResults) -> int:
relevant_avrs = [algorithmVerificationResult for algorithmVerificationResult in algorithmVerificationResults if algorithmVerificationResult.generator == generator and algorithmVerificationResult.key_algorithm_oid == oid]

for algorithmVerificationResult in relevant_avrs:
if algorithmVerificationResult.test_result == None or algorithmVerificationResult.test_result is '':
if algorithmVerificationResult.test_result == None or algorithmVerificationResult.test_result == '':
continue

if algorithmVerificationResult.test_result == 'Y':
Expand Down

0 comments on commit c40228e

Please sign in to comment.