Skip to content

Commit 1533562

Browse files
config_test
1 parent 2b76bf9 commit 1533562

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/config_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ class BaseConfigExpansion(BaseConfig):
5353

5454

5555
def test_expansion_validation():
56-
BaseConfigExpansion()
57-
56+
with pytest.raises(ValueError):
57+
_ = BaseConfigExpansion(python_versions=("1.f.0",))
5858

5959
def test_min_py_version():
6060
conf = BaseConfig(python_versions=("5.5.5", "1.1.1", "9.9.9"))

0 commit comments

Comments
 (0)