Skip to content

Commit d16722c

Browse files
committed
fix environment tests
1 parent d5e17e1 commit d16722c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_environment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,12 +143,12 @@ def test_pyproject_toml(self):
143143
def test_python_version(self):
144144
env = Environment.create_python_environment(os.path.join(TESTDATA, "python-project", "using_pyversion"))
145145
assert env.python_interpreter == sys.executable
146-
assert env.python_version_requirement == ">=3.8, <3.12"
146+
assert env.python_version_requirement == ">=3.8,<3.12"
147147

148148
def test_all_of_them(self):
149149
env = Environment.create_python_environment(os.path.join(TESTDATA, "python-project", "allofthem"))
150150
assert env.python_interpreter == sys.executable
151-
assert env.python_version_requirement == ">=3.8, <3.12"
151+
assert env.python_version_requirement == ">=3.8,<3.12"
152152

153153
def test_missing(self):
154154
env = Environment.create_python_environment(os.path.join(TESTDATA, "python-project", "empty"))

0 commit comments

Comments
 (0)