Skip to content

Commit e545c7d

Browse files
committed
for now fix the test
1 parent 8f2c0c5 commit e545c7d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

tests/pypi/env_marker_setting/env_marker_setting_tests.bzl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ def _test_expr(name):
1919
)
2020

2121
cases = {
22-
"python_full_version_lt_negative": {
22+
"python_full_version_gte": {
2323
"config_settings": {
2424
PYTHON_VERSION: "3.12.0",
2525
},
26-
"expected": "FALSE",
27-
"expression": "python_full_version < '3.8'",
26+
"expected": "TRUE",
27+
"expression": "python_full_version >= '3.12.0'",
2828
},
29-
"python_version_gte": {
29+
"python_full_version_lt_negative": {
3030
"config_settings": {
3131
PYTHON_VERSION: "3.12.0",
3232
},
33-
"expected": "TRUE",
34-
"expression": "python_version >= '3.12.0'",
33+
"expected": "FALSE",
34+
"expression": "python_full_version < '3.8'",
3535
},
3636
}
3737

0 commit comments

Comments
 (0)