Skip to content

Commit 8af86ce

Browse files
committed
Create correct Python version variables
Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 7185ecd commit 8af86ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/scancode/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,8 @@ def test_scan_works_with_no_processes_in_threaded_mode():
342342

343343
_sys_v1 = sys.version_info[1]
344344
py311 = py3 and _sys_v1 == 11
345-
py312 = py3 and _sys_v1 == 11
346-
py313 = py3 and _sys_v1 == 11
345+
py312 = py3 and _sys_v1 == 12
346+
py313 = py3 and _sys_v1 == 13
347347

348348

349349
@pytest.mark.skipif(py311, reason='Fails on 311 for obscure reasons')

0 commit comments

Comments
 (0)