We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5910eb commit c40228eCopy full SHA for c40228e
src/pqc_report_writer_common.py
@@ -46,7 +46,7 @@ def passedAllVerifiers(generator, oid, algorithmVerificationResults) -> int:
46
relevant_avrs = [algorithmVerificationResult for algorithmVerificationResult in algorithmVerificationResults if algorithmVerificationResult.generator == generator and algorithmVerificationResult.key_algorithm_oid == oid]
47
48
for algorithmVerificationResult in relevant_avrs:
49
- if algorithmVerificationResult.test_result == None or algorithmVerificationResult.test_result is '':
+ if algorithmVerificationResult.test_result == None or algorithmVerificationResult.test_result == '':
50
continue
51
52
if algorithmVerificationResult.test_result == 'Y':
0 commit comments