diff options
-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", ), ( |