Skip to content

Commit 39620bc

Browse files
committed
Update integration tests accordingly for new defaults
1 parent 4f6291e commit 39620bc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/test_integration.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ def test_alternate_executable_support(self):
6161
cases = [
6262
(
6363
get_python_version_body,
64-
"3.13\n",
64+
"3.14\n",
6565
"test default executable is used when executable_path not specified",
6666
),
6767
(
6868
get_python_version_body
69-
| {"executable_path": "/snekbin/python/3.13/bin/python"},
70-
"3.13\n",
69+
| {"executable_path": "/snekbin/python/3.14/bin/python"},
70+
"3.14\n",
7171
"test default executable is used when explicitly set",
7272
),
7373
(
@@ -90,8 +90,8 @@ def test_gil_status(self):
9090
"input": "import sysconfig; print(sysconfig.get_config_var('Py_GIL_DISABLED'))"
9191
}
9292
cases = [
93-
("3.13", "0\n"),
94-
("3.13t", "1\n"),
93+
("3.14", "0\n"),
94+
("3.14t", "1\n"),
9595
]
9696
for version, expected in cases:
9797
with self.subTest(version=version, expected=expected):

0 commit comments

Comments
 (0)