Skip to content

Commit 5058eca

Browse files
committed
Fix a couple of failing tests
1 parent ad5ecaa commit 5058eca

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/conda/py-r-postbuild-file/verify.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55

66
def test_sys_version():
7-
"""The default python version should be 3.7"""
8-
assert sys.version_info[:2] == (3, 7)
7+
"""The default python version should be 3.10"""
8+
assert sys.version_info[:2] == (3, 10)
99

1010

1111
def test_there():

tests/conda/py2/verify

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
import sys
33

4-
assert sys.version_info[:2] == (3, 7), sys.version
4+
assert sys.version_info[:2] == (3, 10), sys.version
55

66
# verify that we have Python 2 and Python 3 kernelspecs
77
from jupyter_client.kernelspec import KernelSpecManager

0 commit comments

Comments
 (0)