Skip to content

Commit 942434a

Browse files
hugovkpicnixz
andauthored
Apply suggestions from code review
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
1 parent 9113833 commit 942434a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,6 @@ jobs:
699699
&& '
700700
build-ubuntu,
701701
build-ubuntu-ssltests,
702-
build-wasi,
703702
test-hypothesis,
704703
build-asan,
705704
build-san,

Tools/ssl/multissltests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,9 +584,9 @@ def main():
584584
assert len(libs) == 1
585585
cls = libs.pop()
586586
if args.ssl_versions:
587-
versions.extend((cls, v) for v in args.ssl_versions])
587+
versions.extend((cls, v) for v in args.ssl_versions)
588588
else:
589-
versions.extend([(cls, v) for v in cls.recent_versions.fget()])
589+
versions.extend((cls, v) for v in cls.recent_versions.fget())
590590
if not args.disable_ancient:
591591
versions.extend([(cls, v) for v in cls.old_versions.fget()])
592592
else:

0 commit comments

Comments
 (0)