Skip to content

Commit 9f29ea3

Browse files
committed
fix floor
1 parent 55b2a82 commit 9f29ea3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/docker_ssi/test_docker_ssi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
_NODEJS_V6_OR_LATER = context.library == "nodejs" and context.library.version.major >= 6
1818
_NODEJS_UNSUPPORTED_RUNTIME = context.library == "nodejs" and (
1919
(_NODEJS_V6_OR_LATER and context.installed_language_runtime < "22.0")
20-
or (not _NODEJS_V6_OR_LATER and context.installed_language_runtime < "12.17.0")
20+
or (not _NODEJS_V6_OR_LATER and context.installed_language_runtime < "17.0")
2121
)
2222
_NODEJS_ABORT_IRRELEVANT = context.library == "nodejs" and not _NODEJS_UNSUPPORTED_RUNTIME
2323

tests/docker_ssi/test_docker_ssi_appsec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
_NODEJS_V6_OR_LATER = context.library == "nodejs" and context.library.version.major >= 6
88
_NODEJS_UNSUPPORTED_RUNTIME = context.library == "nodejs" and (
99
(_NODEJS_V6_OR_LATER and context.installed_language_runtime < "22.0")
10-
or (not _NODEJS_V6_OR_LATER and context.installed_language_runtime < "12.17.0")
10+
or (not _NODEJS_V6_OR_LATER and context.installed_language_runtime < "17.0")
1111
)
1212

1313

tests/docker_ssi/test_docker_ssi_crash.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
_NODEJS_V6_OR_LATER = context.library == "nodejs" and context.library.version.major >= 6
1414
_NODEJS_UNSUPPORTED_RUNTIME = context.library == "nodejs" and (
1515
(_NODEJS_V6_OR_LATER and context.installed_language_runtime < "22.0")
16-
or (not _NODEJS_V6_OR_LATER and context.installed_language_runtime < "12.17.0")
16+
or (not _NODEJS_V6_OR_LATER and context.installed_language_runtime < "17.0")
1717
)
1818

1919

0 commit comments

Comments
 (0)