diff options
author | 2025-05-17 10:06:50 +0100 | |
---|---|---|
committer | 2025-05-17 10:06:50 +0100 | |
commit | 2696bd67825c832a78d83daec9e34acba5a2dd99 (patch) | |
tree | 6c897c231b28c35f05417a31eca920ee6cd0bfa2 | |
parent | Bump eval deps to latest versions (diff) |
update tests to use new default python version
-rw-r--r-- | tests/test_integration.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py index ed44d86..d601a64 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -61,13 +61,13 @@ class IntegrationTests(unittest.TestCase): cases = [ ( get_python_version_body, - "3.12\n", + "3.13\n", "test default executable is used when executable_path not specified", ), ( get_python_version_body - | {"executable_path": "/snekbin/python/3.12/bin/python"}, - "3.12\n", + | {"executable_path": "/snekbin/python/3.13/bin/python"}, + "3.13\n", "test default executable is used when explicitly set", ), ( |